Fix missing check table refresh handler
This commit is contained in:
parent
627711e14b
commit
ac3dc576c2
|
|
@ -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?.();
|
||||||
}
|
}
|
||||||
//删除in记录后,out也要删除相应的记录
|
//删除in记录后,out也要删除相应的记录
|
||||||
});
|
});
|
||||||
|
|
@ -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(){
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue