Fix missing check table refresh handler

This commit is contained in:
caoqianming 2026-07-28 13:30:19 +08:00
parent 627711e14b
commit ac3dc576c2
1 changed files with 4 additions and 4 deletions

View File

@ -957,7 +957,7 @@ export default {
if(that.mlogItem.material_out_&&that.mlogItem.material_out_.tracking==10){ if(that.mlogItem.material_out_&&that.mlogItem.material_out_.tracking==10){
that.$refs.tableOut.refresh(); that.$refs.tableOut.refresh();
}else{ }else{
that.$refs.checkTable.refreshfun(); that.$refs.checkTable?.refreshfun?.();
} }
//inout //inout
}); });
@ -1060,7 +1060,7 @@ export default {
if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){ if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){
this.$refs.tableOut.refresh(); this.$refs.tableOut.refresh();
}else{ }else{
this.$refs.checkTable.refreshfun(); this.$refs.checkTable?.refreshfun?.();
} }
}, },
handleCheckSuccess() { handleCheckSuccess() {
@ -1081,7 +1081,7 @@ export default {
if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){ if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){
this.$refs.tableOut.refresh(); this.$refs.tableOut.refresh();
}else{ }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){ if(this.mlogItem.material_out_&&this.mlogItem.material_out_.tracking==10){
this.$refs.tableOut.refresh(); this.$refs.tableOut.refresh();
}else{ }else{
this.$refs.checkTable.refreshfun(); this.$refs.checkTable?.refreshfun?.();
} }
}, },
checkDialogClose(){ checkDialogClose(){