This commit is contained in:
gotoeasy
2025-01-06 18:02:40 +08:00
parent 4c10c1166d
commit d4d4e6bf05

View File

@@ -468,7 +468,7 @@ function fnDownload() {
tableData.value.forEach(item => {
let flg = false;
tableConfigStore.columns.forEach(oCol => {
if (!oCol.hidden && !oCol.editType.startsWith('$') && oCol.editType.field != 'text') {
if (!oCol.hidden && !oCol.editType.startsWith('$') && oCol.field != 'text') {
flg && (fileContent += ',');
fileContent += item[oCol.field];
flg = true;