From b4b37c5e680a18288d4f97924580ce1e51d8cba6 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Thu, 8 Aug 2024 19:24:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AD=90=E5=8D=B7=E8=A3=85=E7=AE=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/SecondPhase/production/ZjContainer.vue | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) 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 } } }