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