From a378a90dc8795e69df7a9135567b9b18fa0732e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=82=E7=B3=96?= Date: Mon, 19 Jan 2026 09:48:45 +0800 Subject: [PATCH] =?UTF-8?q?fix(wms):=20=E4=BF=AE=E5=A4=8D=E9=92=A2?= =?UTF-8?q?=E5=8D=B7=E5=85=A5=E5=BA=93=E6=97=B6=E5=BD=93=E5=89=8D=E9=92=A2?= =?UTF-8?q?=E5=8D=B7=E5=8F=B7=E6=9C=AA=E8=AE=BE=E7=BD=AE=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 在获取最大入库钢卷号时,同时设置当前钢卷号为去掉最后一位的钢卷号,确保表单数据完整 --- klp-ui/src/views/wms/coil/do/warehousing.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/klp-ui/src/views/wms/coil/do/warehousing.vue b/klp-ui/src/views/wms/coil/do/warehousing.vue index 014fc406..3759be4d 100644 --- a/klp-ui/src/views/wms/coil/do/warehousing.vue +++ b/klp-ui/src/views/wms/coil/do/warehousing.vue @@ -735,6 +735,7 @@ export default { console.log(res) // 扣掉最后一位 this.$set(this.form, 'enterCoilNo', res.data.maxEnterCoilNo.slice(0, -1)); + this.$set(this.form, 'currentCoilNo', res.data.maxEnterCoilNo.slice(0, -1)); }) }, // 检查钢卷号是否合法(后端检查)