修改业务单据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-input v-model="formData.remark" auto-complete="off"></el-input>
</el-form-item> </el-form-item>
</el-col> </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-row>
</el-card> </el-card>
<el-card> <el-card>

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

Loading…
Cancel
Save