From 65c41bd9a40b0940bb0252c852ffd0d96bf44a28 Mon Sep 17 00:00:00 2001 From: qq787203167 <787203167@qq.com> Date: Tue, 22 Mar 2022 17:13:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=A6=85=E9=81=93=E5=B7=B2?= =?UTF-8?q?=E7=9F=A5bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jero-web/src/components/Standardselection/index.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/jero-web/src/components/Standardselection/index.vue b/jero-web/src/components/Standardselection/index.vue index 44f1be8f2..817b41246 100644 --- a/jero-web/src/components/Standardselection/index.vue +++ b/jero-web/src/components/Standardselection/index.vue @@ -168,7 +168,13 @@ }) }, searchQuery(queryParam) { - this.queryParam = queryParam + let queryParamQuery = JSON.parse(JSON.stringify(queryParam)) + Object.keys(queryParamQuery).forEach(res => { + if (queryParamQuery[res] instanceof Array) { + queryParamQuery[res] = queryParamQuery[res].join(',') + } + }) + this.queryParam = queryParamQuery this.replacePage() }, searchReset(queryParam) {