fix:运料出入库记录关闭详情后刷新列表页

This commit is contained in:
shijing 2025-12-19 09:31:26 +08:00
parent 981e87d386
commit 71d5e9c56b
1 changed files with 5 additions and 1 deletions

View File

@ -173,7 +173,7 @@
:type="type"
:cate="cate"
:mioId="mioId"
@closed="visibleDrawer = false"
@closed="closedFun"
>
</record-dialog>
</template>
@ -307,6 +307,10 @@ export default {
handleSaveSuccess() {
this.$refs.table.refresh();
},
closedFun(){
this.visibleDrawer = false;
this.$refs.table.refresh();
},
},
};
</script>