layui数据表格里内容的判断显示 template field 模板

function renderTable() {
	table.render({
		elem: '#answerrecordtable',
		data: adminquestionListdata, // 数据
		limit: 10,
		title: '答疑记录管理',
		cols: [
			[{
				field: 'username',
				title: '提问人',
				minWidth: 120,
			},{
				field: 'createtime',
				title: '提问时间',
				minWidth: 200,
			}, {
				field: 'answernum',
				title: '问题状态',
				minWidth: 150,
				templet: function(res) {  //回答数为0时:未回答 回答数>0且未解决时:未解决 
									      已解决时:已解决  resolvedflag:1-已解决 0-未解决
					if(res.answernum == '0') {
						return '未回答';
					} else if(res.answernum > '0' && res.resolvedflag == '0') {
						return '未解决';
					} else {
						return '已解决';
					}
				}
			}, {
				field: 'questiontype',
				title: '问题来源',
				minWidth: 150,
				templet: function(res) { //问题类型 10-班级答疑 20-校内答疑 30-校外答疑
					if(res.questiontype == '10') {
						return '班级答疑';
					} else if(res.tradestatus == '20') {
						return '校内答疑';
					} else {
						return '校外答疑';
					}
				}
			}, {
				field: 'teachername',
				title: '问答老师',
				minWidth: 150,
			}, {
				title: '操作',
				toolbar: '#barDemo',
				minWidth: 150,
				fixed: 'right',
			}]
		],
		done: function(res, curr, count) {
			$('th').css({
				'background-color': '#fff',
				'height': '40px'
			});
		},
		page: false,
		loading: true
	});
}

你可能感兴趣的:(jquery,template,layui)