fix:关闭详情后刷新mlog
This commit is contained in:
parent
263a914fa9
commit
8ac1ad41b1
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue