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