Browse Source

装配收货任务提交校验,关闭提交报错

lijuncheng0816
wangyufei 1 month ago
parent
commit
51dfc46bd4
  1. 4
      src/components/show-modal/show-modal.vue
  2. 4
      src/mycomponents/common/comMessage.vue
  3. 2
      src/pages/productReceipt/job/ccProductReceiptDetail.vue

4
src/components/show-modal/show-modal.vue

@ -82,7 +82,9 @@
cancelClose() {
clearInterval(this.timer) //timer
this.$refs.modal.popupClose();
if(this.$refs.modal){
this.$refs.modal.popupClose();
}
this.success({
// cancel: true,
confirm: false,

4
src/mycomponents/common/comMessage.vue

@ -109,7 +109,9 @@
if (this.show) {
this.show = false;
clearInterval(this.timer) //timer
this.$refs.modal.popupClose();
if(this.$refs.modal){
this.$refs.modal.popupClose();
}
this.success({
// cancel: false,
confirm: true,

2
src/pages/productReceipt/job/ccProductReceiptDetail.vue

@ -346,6 +346,8 @@
if (!this.checkLocation()) {
return
}
}else{
this.toLocationCode = this.jobToLocationCode
}

Loading…
Cancel
Save