!21 update public/static/assets/gougu/module/tablePlus.js.

Merge pull request !21 from 紫Mo.com/N/A
This commit is contained in:
勾股开源 2023-09-18 07:44:13 +00:00 committed by Gitee
commit 8b05819a40
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)