fix: 修复文本搜索--filter点击后表达式不对的问题
This commit is contained in:
@@ -88,7 +88,7 @@ export default {
|
||||
return column.name === key
|
||||
})
|
||||
let current = this.codeMirror.getValue()
|
||||
current = `${key}=${(column.type === columnType.string ? stringInQuot(params[key]) : params[key])} ${current ? 'AND' : ''}`
|
||||
current = `${key}=${(column.type === columnType.string ? stringInQuot(params[key]) : params[key])} ${current ? 'AND' : ''} ${current}`
|
||||
toRaw(this.codeMirror).setValue(current)
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user