Compare commits

..

No commits in common. "0cbbb4695762f712bded4a2e8f2a5a1dee359886" and "8a8a70b4396f2408d245dbccf438f8db193230d8" have entirely different histories.

1 changed files with 1 additions and 11 deletions

View File

@ -216,8 +216,7 @@
</el-col>
<el-col :md="12" :sm="24" v-if="change_batch">
<el-form-item label="新批次号" prop="new_batch">
<el-input v-model="form.new_batch" placeholder="新批次号" @change="new_batch(form.new_batch)" :disabled="type==50"></el-input>
<span style="color: red;">请手动录入新批次号不要用已有批次</span>
<el-input v-model="form.new_batch" placeholder="新批次号" :disabled="type==50"></el-input>
</el-form-item>
</el-col>
</el-row>
@ -753,7 +752,6 @@ export default {
this.imputDisable = false;
this.$refs.codeInput.focus();
},
async getInputText(data){
if(data==''){
return;
@ -925,14 +923,6 @@ export default {
this.countChange();
}, 500);
},
new_batch(){
let that = this;
if(that.form.new_batch.indexOf('#')>-1){
that.form.new_batch = '';
that.$message.error("新批次号不能用以有批次需要手动录入新批次号!");
}
},
},
};
</script>