LayUI 性别前端显示

Posted 在奋斗的大道

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LayUI 性别前端显示相关的知识,希望对你有一定的参考价值。

在程序开发中,经常使用1=男生,2=女生,在数据库中存储的字段值也是1或2,在LayUI前端显示如何解决这个问题。

解决办法:通过定义字段的template渲染函数,解决字段值转换显示问题。

核心功能代码片段:

cols: [
    	[
	      field:'id', width: 50, title: 'ID'
	      ,field:'name', title: '员工名称', align: 'center'
	      ,field:'code', title: '员工编码', align: 'center'
	      ,field:'sex', title: '性别', align: 'center',  templet: function(d)if(d.sex == 1)return '男'elsereturn '女'
	      ,field:'birthday', title: '员工生日', align: 'center', templet:"<div>layui.util.toDateString(d.birthday)</div>"
	      ,field:'telephone', title: '电话号码', align: 'center'
	      ,field:'workYear', title: '工作年限', align: 'center'
	      ,title:'操作', align: 'center', toolbar: '#operation', width:150
    	]
   	]

 前端效果截图:

 

以上是关于LayUI 性别前端显示的主要内容,如果未能解决你的问题,请参考以下文章

layui前端框架表格如何进行屏幕适配

如何在layui中使用表单

[LayUI] templet 表格数据转换(1,0 男女)

LayUI 日期格式显示

layui如何左侧点击,右侧显示内容?

使用LayUI展示数据