layui 数据表格 根据值(1=业务,2=机构)显示中文名称
发布日期:2021-05-04 09:22:55 浏览次数:14 分类:技术文章

本文共 558 字,大约阅读时间需要 1 分钟。

数据是用ThinkPHP5操作

类型是固定4个,

用layui templet - 自定义模板 方法一

 {field:'type', title: '类型', width: 200, templet: '#titleTpl'}

 <script type="text/html" id="titleTpl">
  if({
{d.type}}=='2'){机构}else if({
{d.type}}=='3'){财务}
</script> 
其它方法二:(ThinkPHP5读数据)
//分类显示中文名称			$("[data-field='type']").children().each(function(){					if($(this).text()=='1'){					   $(this).text("教务")					}else if($(this).text()=='2'){					   $(this).text("机构")					}else if($(this).text()=='3'){					   $(this).text("财务")					}else if($(this).text()=='4'){					   $(this).text("业务")					}			})

代码:

上一篇:微信手机支付
下一篇:TP5 编辑多选框 选择中的标出来

发表评论

最新留言

留言是一种美德,欢迎回访!
[***.207.175.100]2025年03月16日 06时43分47秒