修改禅道已知bug
This commit is contained in:
@@ -168,7 +168,13 @@
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
searchQuery(queryParam) {
|
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()
|
this.replacePage()
|
||||||
},
|
},
|
||||||
searchReset(queryParam) {
|
searchReset(queryParam) {
|
||||||
|
|||||||
Reference in New Issue
Block a user