fix:已提交日志详情关闭时,不刷新日志列表
This commit is contained in:
parent
d108437769
commit
9f66afc6b2
|
@ -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>
|
||||
|
|
|
@ -374,9 +374,11 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
detailClose() {
|
||||
detailClose(data) {
|
||||
this.dialog.detail = false;
|
||||
this.$refs.table.refresh();
|
||||
if(data){}else{
|
||||
this.$refs.table.refresh();
|
||||
}
|
||||
},
|
||||
table_monitor(row){
|
||||
let that= this;
|
||||
|
|
Loading…
Reference in New Issue