Browse Source

fix(treeTable): 表格删除所有行之后,全选按钮选中的问题 (#1759)

pull/1784/head
morning-star 8 months ago committed by GitHub
parent
commit
26abb14c9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 28
      src/modules/treeTable.js

28
src/modules/treeTable.js

@ -1622,17 +1622,23 @@ layui.define(['table'], function (exports) {
data = data.filter(function (item) {
return !item[options.disabledName];
});
layui.each(data, function (i1, item1) {
if (item1[checkName] || item1[LAY_CHECKBOX_HALF]) {
isIndeterminate = true;
}
if (!item1[checkName]) {
isAll = false;
}
if (isIndeterminate && !isAll) {
return true;
}
})
if(data.length > 0){
layui.each(data, function (i1, item1) {
if (item1[checkName] || item1[LAY_CHECKBOX_HALF]) {
isIndeterminate = true;
}
if (!item1[checkName]) {
isAll = false;
}
if (isIndeterminate && !isAll) {
return true;
}
})
}else{
isAll = false;
}
isIndeterminate = isIndeterminate && !isAll;
form.render(tableView.find('input[name="layTableCheckbox"][lay-filter="layTableAllChoose"]').prop({
'checked': isAll,

Loading…
Cancel
Save