From 8001d66ca8539bbe64803edb8e3984c08fba30fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B4=AA=E6=B4=AA?= <2498601771@qq.com> Date: Thu, 14 Dec 2023 16:52:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E9=AB=98=E4=BA=AE=E5=8F=96=E5=80=BC=E6=9C=89=E6=97=B6=E4=B8=BA?= =?UTF-8?q?=E7=A9=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/advancedSearch/meta/parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/advancedSearch/meta/parser.js b/src/components/advancedSearch/meta/parser.js index fe2a836b..99c2c339 100644 --- a/src/components/advancedSearch/meta/parser.js +++ b/src/components/advancedSearch/meta/parser.js @@ -1528,7 +1528,7 @@ export default class Parser { if (item.column && item.column.isFullText) { keywordList.push({ type: 'fullText', value: item.value.value }) } else if (item.column && !item.column.isFullText) { - keywordList.push({ type: item.column.type, value: item.column.label }) + keywordList.push({ type: item.column.type, value: item.value.value || item.column.label }) } }) }