修正一个默认列hide会被覆盖的问题 update public/static/assets/gougu/module/tablePlus.js.

Signed-off-by: 紫Mo.com <490139113@qq.com>
This commit is contained in:
紫Mo.com 2023-09-17 12:38:02 +00:00 committed by Gitee
parent 5393049b3c
commit 5fb664c7cc
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -120,7 +120,7 @@ layui.define(function(exports) {
let colsStatus = savedCols ? JSON.parse(savedCols) : {};
let cols = params.cols;
for (var i=0;i<cols[0].length;i++){
if(cols[0][i].field!=undefined){
if(cols[0][i].field!=undefined && colsStatus[cols[0][i].field] != undefined){
cols[0][i].hide=colsStatus[cols[0][i].field];
}
}
@ -138,7 +138,7 @@ layui.define(function(exports) {
//重置搜索提交
$('body').on('click', '[lay-filter="table-search-reset"]', function () {
let prev = $(this).prev();
if (typeof(prev) != "undefined") {
if (typeof(prev) != "undefined" ) {
setTimeout(function () {
prev.click();
}, 10)