From ac3dc576c23c10cc4df556bd421ddaf93cdfd18e Mon Sep 17 00:00:00 2001 From: caoqianming Date: Tue, 28 Jul 2026 13:30:19 +0800 Subject: [PATCH] Fix missing check table refresh handler --- src/views/wpm_bx/mlog_detail.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/wpm_bx/mlog_detail.vue b/src/views/wpm_bx/mlog_detail.vue index c123253b..7e22bbde 100644 --- a/src/views/wpm_bx/mlog_detail.vue +++ b/src/views/wpm_bx/mlog_detail.vue @@ -957,7 +957,7 @@ export default { if(that.mlogItem.material_out_&&that.mlogItem.material_out_.tracking==10){ that.$refs.tableOut.refresh(); }else{ - that.$refs.checkTable.refreshfun(); + that.$refs.checkTable?.refreshfun?.(); } //删除in记录后,out也要删除相应的记录 }); @@ -1060,7 +1060,7 @@ export default { if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){ this.$refs.tableOut.refresh(); }else{ - this.$refs.checkTable.refreshfun(); + this.$refs.checkTable?.refreshfun?.(); } }, handleCheckSuccess() { @@ -1081,7 +1081,7 @@ export default { if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){ this.$refs.tableOut.refresh(); }else{ - this.$refs.checkTable.refreshfun(); + this.$refs.checkTable?.refreshfun?.(); } }, //编辑成功后的方法调用 @@ -1099,7 +1099,7 @@ export default { if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){ this.$refs.tableOut.refresh(); }else{ - this.$refs.checkTable.refreshfun(); + this.$refs.checkTable?.refreshfun?.(); } }, checkDialogClose(){