no message

This commit is contained in:
chenlin
2026-01-27 12:39:04 +08:00
parent 5484da2602
commit 33ff00ef3c

View File

@@ -102,6 +102,7 @@ const initColumnConfig = () => {
// 如果 IndexedDB 没有记录isExport === undefined则从 fieldList 中获取 exportEntity.isExport // 如果 IndexedDB 没有记录isExport === undefined则从 fieldList 中获取 exportEntity.isExport
let isExport = column.isExport let isExport = column.isExport
debugger
if (isExport === undefined) { if (isExport === undefined) {
// 查找 fieldList 中对应的字段 // 查找 fieldList 中对应的字段
if (props.fieldList && Array.isArray(props.fieldList)) { if (props.fieldList && Array.isArray(props.fieldList)) {
@@ -110,7 +111,7 @@ const initColumnConfig = () => {
isExport = 'Y' isExport = 'Y'
} else { } else {
// 如果 fieldList 中没有找到或不是 'Y',默认导出 // 如果 fieldList 中没有找到或不是 'Y',默认导出
isExport = 'Y' isExport = 'N'
} }
} else { } else {
// 如果没有 fieldList默认导出 // 如果没有 fieldList默认导出