fix:已提交日志详情关闭时,不刷新日志列表

This commit is contained in:
shijing 2025-09-18 09:06:36 +08:00
parent d108437769
commit 9f66afc6b2
2 changed files with 10 additions and 3 deletions

View File

@ -3,7 +3,7 @@
<el-drawer v-model="visible" :size="'95%'" :show-close="false">
<template #header>
<h4>日志详情</h4>
<el-button type="danger" @click="$emit('closed')">关闭</el-button>
<el-button type="danger" @click="closedPage()">关闭</el-button>
</template>
<div>
<el-card style="width: 100%" header="基本信息" shadow="never">
@ -1048,6 +1048,11 @@ export default {
});
})
},
closedPage(){
let that = this;
that.visible = false;
that.$emit('closed',that.isSubmit);
},
},
};
</script>

View File

@ -374,9 +374,11 @@ export default {
}
}
},
detailClose() {
detailClose(data) {
this.dialog.detail = false;
if(data){}else{
this.$refs.table.refresh();
}
},
table_monitor(row){
let that= this;