CN-1265 fix: 实体搜索修复模糊查询转换模式丢失单引号,以及未搜索时转换模式参数丢失等问题
This commit is contained in:
@@ -693,7 +693,7 @@ export default {
|
||||
// 如果地址栏有listMode,即列表页,并非首页,则开始搜索
|
||||
if (listMode) {
|
||||
this.showList = true
|
||||
if (q.indexOf('%20') > -1) {
|
||||
if (q && q.indexOf('%20') > -1) {
|
||||
q = decodeURI(q)
|
||||
}
|
||||
this.initSearch(q)
|
||||
|
||||
Reference in New Issue
Block a user