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("新批次号不能用以有批次需要手动录入新批次号!"); + } + + }, }, };