调整 treeTable `reload` 由默认深拷贝换成默认浅拷贝

pull/1309/head
sunxiaobin89 2023-07-26 22:28:27 +08:00
parent d34b08a2d9
commit 108221ad79
1 changed files with 1 additions and 1 deletions

View File

@ -1854,7 +1854,7 @@ layui.define(['table'], function (exports) {
// 重载
treeTable.reload = function (id, options, deep, type) {
deep = deep !== false; // 默认采用深拷贝
// deep = deep !== false; // 默认采用深拷贝
var that = getThisTable(id);
if (!that) return;
that.reload(options, deep, type);