Browse Source

修复 table hideCol 方法第二个参数为对象时无效的问题

pull/1270/head
sight 1 year ago
parent
commit
0a08d449f6
  1. 1
      src/modules/table.js

1
src/modules/table.js

@ -2817,6 +2817,7 @@ layui.define(['lay', 'laytpl', 'laypage', 'form', 'util'], function(exports){
}
})
} else {
cols = layui.isArray(cols) ? cols : [cols];
layui.each(cols, function (i1, item1) {
that.eachCols(function (i2, item2) {
if (item1.field === item2.field) {

Loading…
Cancel
Save