优化 treeTable 局部代码细节

pull/1321/head
贤心 1 year ago
parent a2aabef0de
commit 273b936588

@ -1523,11 +1523,11 @@ layui.define(['table'], function (exports) {
var index = tr.data('index'); var index = tr.data('index');
var tableViewElem = options.elem.next(); var tableViewElem = options.elem.next();
tr[checked ? 'addClass' : 'removeClass'](ELEM_CHECKED); // 主体行 tr[checked ? 'addClass' : 'removeClass'](ELEM_CHECKED); // 主体行
// 右侧固定行 // 右侧固定行
tr.each(function(){ tr.eq(0).each(function(){
var index = $(this).data('index'); var index = $(this).data('index');
var trFixedR = tableViewElem.find('.layui-table-fixed-r tbody tr[data-index="'+ index +'"]'); var trFixedR = tableViewElem.find('.layui-table-fixed-r tbody tr[data-index="'+ index +'"]');
trFixedR[checked ? 'addClass' : 'removeClass'](ELEM_CHECKED); trFixedR[checked ? 'addClass' : 'removeClass'](ELEM_CHECKED);

Loading…
Cancel
Save