Browse Source

搜索关键词新加下拉框

xiebaomin 1 year ago
parent
commit
dffedff361
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/library/tag/list.vue

+ 2 - 2
src/views/library/tag/list.vue

@@ -278,7 +278,7 @@ export default {
       const res = await findLinkageStatus({ id: $event.id, linkageStatus: $event.linkageStatus ? 1 : 0 })
       if (res.code === 0) {
         if (res.data === 0) {
-          await this.getList()
+          await this.fetchKeywordList()
           return this.$message({
             type: 'success',
             message: `${res.msg}`
@@ -300,7 +300,7 @@ export default {
             $event.linkageStatus = !$event.linkageStatus
           })
         }
-        await this.getList()
+        await this.fetchKeywordList()
       }
     },