Layui似乎只接收data里的数据,所以只能使用这个方式把原有数据放入data
parseData: function (res) { //res 即为原始返回的数据
return {
"code": res.code, //解析接口状态
"msg": "", //解析提示文本
"count": res.result.totalCount, //解析数据长度
"data": res.result.list //解析数据列表
};
}
Layui如何把0,1转换为男女
{标签:code,return,layui,else,遇见,res,再次,解析,type From: https://www.cnblogs.com/AllWjw/p/16865708.html
field: 'status', title: '状态(0-申报中,1-通过,2-不通过,-1取消)',align: "center", width: 300, templet: function (d) {
if (d.type == 0) {
return '申报中'
} else if (d.type == 1) {
return '通过'
} else if (d.type == 2) {
return '不通过'
}else {
return '取消'
}
}
}