fix: 修复实体列表点击左侧filter的tag选项,不能匹配has函数,以及tag模式下模糊搜索,不显示操作符等问题

This commit is contained in:
刘洪洪
2023-08-31 14:40:16 +08:00
parent 01e9fa87a2
commit 1cf9308e98
3 changed files with 12 additions and 4 deletions

View File

@@ -472,6 +472,13 @@ export default {
}
]
this.$refs.search.addParams(params)
} else if (topData.topColumn === 'tag') {
const params = {
column: topData.topColumn,
operator: 'has',
value: name
}
this.$refs.search.addParams([params])
} else {
const params = {
column: topData.topColumn,