新增 treeTable 补充 getOptionshideCol 方法

This commit is contained in:
sunxiaobin89 2023-05-03 18:38:03 +08:00
parent 378fb2cf28
commit 6f25d2f2e5

View File

@ -24,14 +24,16 @@ layui.define(['table'], function (exports) {
that.config = $.extend({}, that.config, options);
return that;
},
resize: table.resize
resize: table.resize,
getOptions: table.getOptions,
hideCol: table.hideCol
};
// 操作当前实例
var thisTreeTable = function () {
var that = this
, options = that.config
, id = options.id || options.index;
var that = this;
var options = that.config
var id = options.id || options.index;
return {
config: options,