欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
                    });
                });
相关标签: layui