Browse Source

优化 table `setRowChecked` 方法中标注当前选中行样式的判断逻辑

pull/1273/head
sunxiaobin89 1 year ago
parent
commit
6111dba53d
  1. 2
      src/modules/table.js

2
src/modules/table.js

@ -1454,7 +1454,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
}, opts);
// 标注当前行选中样式
if(opts.type !== 'checkbox' && opts.index !== 'all'){
if(opts.index !== 'all'){
tr.addClass(ELEM_CLICK).siblings('tr').removeClass(ELEM_CLICK);
}

Loading…
Cancel
Save