CN-1361 fix: 1、修复实体搜索在ip like后带%刷新报错;2、text模式下模糊搜索切换为tag带%;3、text模式切换tag模式连接符不能点击。

This commit is contained in:
刘洪洪
2023-09-27 17:27:23 +08:00
parent b6768f9b25
commit 4c579045a0
4 changed files with 62 additions and 41 deletions

View File

@@ -223,7 +223,7 @@ export default {
toRaw(this.codeMirror).setValue(this.str)
}
if (q) {
if (q.indexOf('%') > -1) {
if (q.indexOf('%') === 0 || q.indexOf('%20') > -1 || q.indexOf('%25') > -1) {
q = decodeURI(q)
}
// 为避免地址栏任意输入导致全查询的q带QUERY解析时不识别导致的语法错误