From ae1c5666e25d8b9e3a655ad540d71787d8016688 Mon Sep 17 00:00:00 2001 From: gotoeasy Date: Wed, 13 Sep 2023 22:17:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=8B=E8=BD=BD=E5=BD=93=E5=89=8D=E6=A3=80?= =?UTF-8?q?=E7=B4=A2=E7=BB=93=E6=9E=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- glc/www/web/src/views/glc/search/GlcMain.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glc/www/web/src/views/glc/search/GlcMain.vue b/glc/www/web/src/views/glc/search/GlcMain.vue index 7e52ba9..82a9d26 100644 --- a/glc/www/web/src/views/glc/search/GlcMain.vue +++ b/glc/www/web/src/views/glc/search/GlcMain.vue @@ -290,7 +290,7 @@ function fnDownload() { tableConfigStore.columns.forEach(oCol => { if (!oCol.hidden && !oCol.editType.startsWith('$')) { flg && (fileContent += ', '); - oCol.field == 'text' ? (fileContent += item.detail) : (fileContent += item[oCol.field]); + fileContent += item.detail || item[oCol.field]; flg = true; } })