LayUI 性别前端显示

2021/12/20 6:23:25

本文主要是介绍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 '男'}else{return '女'}}}
	      ,{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 性别前端显示的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程