【页面刷新】靶段标记等页面关闭时,需要刷新数据
continuous-integration/drone/push Build encountered an error Details

uat
wangxiaoshuang 2025-12-19 16:27:43 +08:00
parent 56bc2bc5cd
commit 8122464fbb
2 changed files with 17 additions and 0 deletions

View File

@ -139,6 +139,18 @@ export default {
uploadStatus: 'upload',
}
},
watch: {
downloadImageVisible(v) {
if (!v) {
this.getList()
}
},
uploadImageVisible(v) {
if (!v) {
this.getList()
}
}
},
mounted() {
this.getList()
},

View File

@ -235,6 +235,11 @@ export default {
this.getList()
}
},
TargetSection_visible(v) {
if (!v) {
this.getList()
}
}
},
mounted() {
window.addEventListener('message', this.receiveMsg)