diff --git a/pages/SecondPhase/production/ZjContainer.vue b/pages/SecondPhase/production/ZjContainer.vue
index 5eb2c7c..c8224e9 100644
--- a/pages/SecondPhase/production/ZjContainer.vue
+++ b/pages/SecondPhase/production/ZjContainer.vue
@@ -108,6 +108,19 @@
+
+ 提示
+
+ 请仔细核对当前扫描子卷数与木箱装卷数是否一致,
+ 当前扫描子卷数: {{dataList.length}}卷,该木箱装卷数为:{{pkObj.num}}卷,
+ 点击确定后将立即生成空木箱出库任务,无法更改!
+
+
+
+
+
+
+
@@ -137,6 +150,7 @@
pkObj: {},
paper: '',
modalShow: false,
+ modalShow1: false,
disabled1: false
};
},
@@ -268,11 +282,19 @@
})
return
}
+ if (this.dataList.length < Number(this.pkObj.num)) {
+ this.modalShow1 = true
+ return
+ }
this.modalShow = true
},
modalSure () {
this._updateEntityList()
this.modalShow = false
+ },
+ modalSure1 () {
+ this.modalShow1 = false
+ this.modalShow = true
}
}
}