多次出库bug修复

dev
郑明梁 2 years ago
parent 2ac9a973fe
commit 78fe874ec0

@ -10,7 +10,7 @@
<el-col :span="17">
<el-form-item label="UDI:">
<el-input v-model="inputQuery.udiCode" ref="udiCodeInputRef" @keypress.enter.native="addCode($event)"
:disabled="detailList.length>0" placeholder="请输入UDI" clearable></el-input>
:disabled="detailList.length>0 || this.formName==2" placeholder="请输入UDI" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="2">
@ -220,6 +220,7 @@ export default {
this.pId = response.data;
filterMutiList({id: this.pId}).then((response) => {
if (response.code == 20000) {
this.showFlg=true;
this.inputQuery.cpmctymc = response.data.data.cpmctymc
this.inputQuery.ggxh = response.data.data.ggxh
this.inputQuery.totalCount = response.data.data.totalCount
@ -257,7 +258,8 @@ export default {
this.inputQuery.useCount = response.data.data.useCount
this.$refs.fromCorpInputRef.focus();
this.checkType=null;
this.showFlg=false;
this.showFlg=true;
this.formName=2
this.enterKeyup();
} else {
this.$refs.markInputRef.focus();
@ -427,6 +429,7 @@ export default {
this.inputQuery.useCount = response.data.useCount
this.pId = response.data.id;
this.showFlg=true;
this.formName=2
this.$refs.fromCorpInputRef.focus();
this.selectMutiDetailList()
} else {

Loading…
Cancel
Save