bug修复

featFunction
anthonywj 3 years ago
parent c435d5b024
commit 479161fdad

@ -221,7 +221,6 @@
:remote-method="findDeptMethod"
:loading="loading"
@focus="findDeptMethod('')"
@change="deptChange"
>
<el-option
v-for="item in fromDeptOptions"
@ -999,10 +998,6 @@ export default {
});
},
deptChange(row) {
this.formData.corpId = row.code;
this.formData.corpName = row.name;
},
findStorageMethod() {
if (this.formData.locStorageCode == null)

@ -232,13 +232,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>
@ -702,10 +701,6 @@ export default {
});
},
deptChange(row) {
this.formData.corpId = row.code;
this.formData.corpName = row.name;
},
findSubStorageMethod() {

Loading…
Cancel
Save