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) {