Merge pull request #4077 from jumpserver/pr@v4@fix_tags

fixed: Fixed an issue where clicking the Delete flag
This commit is contained in:
ZhaoJiSen
2024-06-20 14:57:59 +08:00
committed by GitHub
2 changed files with 6 additions and 4 deletions

View File

@@ -321,6 +321,8 @@ export default {
this.filterKey = '' this.filterKey = ''
this.filterValue = '' this.filterValue = ''
this.valueLabel = '' this.valueLabel = ''
this.$refs.SearchInput.blur()
}, },
handleTagClick(v, k) { handleTagClick(v, k) {
let unableChange = false let unableChange = false

View File

@@ -14,13 +14,13 @@ export default {
Page, GenericListTable Page, GenericListTable
}, },
activated() { activated() {
setTimeout(() => { this.reloadTable()
this.reloadTable()
}, 300)
}, },
methods: { methods: {
reloadTable() { reloadTable() {
this.$refs.ListTable.reloadTable() setTimeout(() => {
this.$refs.ListTable.reloadTable()
}, 300)
} }
} }
} }