bug修复

purchase
anthonyywj2 3 years ago
parent eba2c3953d
commit a1593d09e7

@ -233,13 +233,12 @@
:remote-method="findDeptMethod"
:loading="loading"
@focus="findDeptMethod('')"
@change="deptChange"
>
<el-option
v-for="item in fromDeptOptions"
:key="item.id"
:label="item.name"
:value="item"
:value="item.code"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
@ -560,6 +559,7 @@ export default {
storageList: [],
invQueryData: {},
subInvList: [],
fromDeptOptions: [],
};
},
components: {
@ -1326,11 +1326,6 @@ export default {
});
},
deptChange(row) {
this.formData.corpId = row.code;
this.formData.corpName = row.name;
},
},
filters: {},

@ -218,13 +218,12 @@
:remote-method="findDeptMethod"
:loading="loading"
@focus="findDeptMethod('')"
@change="deptChange"
>
<el-option
v-for="item in fromDeptOptions"
:key="item.id"
:label="item.name"
:value="item"
:value="item.code"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
@ -1055,11 +1054,6 @@ export default {
});
},
deptChange(row) {
this.formData.corpId = row.code;
this.formData.corpName = row.name;
},
getStorage(event) {
this.storageList = [];

Loading…
Cancel
Save