|
@@ -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()
|
|
|
}
|
|
|
},
|
|
|
|