|
|
|
@ -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();
|
|
|
|
|
})
|
|
|
|
|