layui根据条件让一行数据变色 以及单元格update
程序员文章站
2022-04-08 09:25:13
...
done: function (res, page, count) {
var that = this.elem.next();
console.log(that)
res.data.forEach(function (item, index) {
if (item.count >= 260) {
var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']").css("background-color", "#FF0000");
} else if (item.count >= 220) {
var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']").css("background-color", "#FFA500");
} else if (item.count >= 180) {
var tr = that.find(".layui-table-box tbody tr[data-index='" + index + "']").css("background-color", "#ffff00");
}
});
}
// 表格编辑 监听单元格编辑 update
table.on('edit(scanDetail)', function (obj) {
obj.update({
hotelName: obj.value
});
});
上一篇: 微信小程序异步处理promise使用方法