修改业务单据bug

prod
郑明梁 2 years ago
parent 894280f55a
commit 107fdcab60

@ -94,6 +94,12 @@
<el-input v-model="formData.remark" auto-complete="off"></el-input>
</el-form-item>
</el-col>
<el-col v-if="formData.status==4" :span="11">
<el-form-item prop="remark" label="拒绝原因:">
<el-input :disabled="true" v-model="formData.auditRemark" auto-complete="off"></el-input>
</el-form-item>
</el-col>
</el-row>
</el-card>
<el-card>

@ -10,7 +10,7 @@
</el-col>
<el-col :span="8">
<el-form-item label="领用仓库:">
<el-select v-model="filterQuery.targetInvCode" placeholder="请选择领用仓库" style="width: 100%;">
<el-select v-model="filterQuery.invCode" placeholder="请选择领用仓库" style="width: 100%;">
<el-option
v-for="item in invList"
:key="item.code"
@ -243,7 +243,7 @@ export default {
page: 1,
limit: 10,
corpName: null,
targetInvCode: this.invCodebe,
invCode: this.invCodebe,
type: 2,
editStatus: 2,
};
@ -334,8 +334,8 @@ export default {
.then((response) => {
this.invList = response.data || [];
if (this.invList.length > 0) {
this.filterQuery.targetInvCode = this.invList[0].code
this.invCodebe = this.filterQuery.targetInvCode
this.filterQuery.invCode = this.invList[0].code
this.invCodebe = this.filterQuery.invCode
}
this.getList();
})

Loading…
Cancel
Save