From e0a8815d4adb33c7533f0c477a04bf041db30584 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E6=B4=AA=E6=B4=AA?= <2498601771@qq.com> Date: Tue, 9 Jan 2024 11:19:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E5=AE=9E=E4=BD=93?= =?UTF-8?q?=E5=88=87=E6=8D=A2=E6=97=B6=E9=97=B4=E6=90=9C=E7=B4=A2=E9=AB=98?= =?UTF-8?q?=E4=BA=AE=E4=B8=8D=E7=94=9F=E6=95=88=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/views/entityExplorer/EntityExplorer.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/entityExplorer/EntityExplorer.vue b/src/views/entityExplorer/EntityExplorer.vue index 6f1d1deb..ce7f1510 100644 --- a/src/views/entityExplorer/EntityExplorer.vue +++ b/src/views/entityExplorer/EntityExplorer.vue @@ -871,7 +871,8 @@ export default { }, watch: { timeFilter () { - this.search({ metaList: this.metaList, q: this.q, str: this.str }) + const keywordList = this.getKeywordListByMetaList(this.metaList) + this.search({ metaList: this.metaList, q: this.q, str: this.str, keywordList: keywordList }) } }, setup () {