fix:关闭详情后刷新mlog

This commit is contained in:
shijing 2024-08-01 18:12:35 +08:00
parent 263a914fa9
commit 8ac1ad41b1
1 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,7 @@
ref="detailDialog" ref="detailDialog"
:mlogId="mlogId" :mlogId="mlogId"
:mtask="mtask" :mtask="mtask"
@closed="dialog.detail = false" @closed="detailClose"
> >
</detail-drawer> </detail-drawer>
</el-container> </el-container>
@ -194,6 +194,10 @@ export default {
}); });
}, },
methods: { methods: {
detailClose() {
this.dialog.detail = false;
this.$refs.table.refresh();
},
// //
table_add() { table_add() {
this.dialog.save = true; this.dialog.save = true;