From 282e41809e14e0eb0472ec62a7a5ab91f1ae9159 Mon Sep 17 00:00:00 2001 From: shijing Date: Thu, 13 Nov 2025 15:29:23 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E5=90=88=E6=89=B9=E6=97=B6=E6=96=B0?= =?UTF-8?q?=E6=89=B9=E6=AC=A1=E5=8F=B7=E4=B8=8D=E8=83=BD=E6=89=AB=E6=89=B9?= =?UTF-8?q?=E6=AC=A1=E7=A0=81=EF=BC=8C=E9=9C=80=E6=89=8B=E5=8A=A8=E5=BD=95?= =?UTF-8?q?=E5=85=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/wpm_bx/handover_form.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/wpm_bx/handover_form.vue b/src/views/wpm_bx/handover_form.vue index 6d025ad3..baee8c9a 100644 --- a/src/views/wpm_bx/handover_form.vue +++ b/src/views/wpm_bx/handover_form.vue @@ -216,7 +216,8 @@ - + + 请手动录入新批次号,不要用已有批次! @@ -752,6 +753,7 @@ export default { this.imputDisable = false; this.$refs.codeInput.focus(); }, + async getInputText(data){ if(data==''){ return; @@ -923,6 +925,14 @@ export default { this.countChange(); }, 500); }, + new_batch(){ + let that = this; + if(that.form.new_batch.indexOf('#')>-1){ + that.form.new_batch = ''; + that.$message.error("新批次号不能用以有批次需要手动录入新批次号!"); + } + + }, }, };