Merge branch '20240912_adapter' of http://116.204.71.86:3000/UDI/udiwms-vue-frame into 20240912_adapter

20240912_adapter
qiuyt 11 months ago
commit 71cb34b42a

@ -636,7 +636,11 @@ export default {
};
findFromCorp(cQuery)
.then((response) => {
this.fromInvOptions = response.data || [];
if (!isBlank(this.$route.query.busType) && this.formDataVisible.consignee == 2){
this.invList = response.data || [];
}else {
this.fromInvOptions = response.data || [];
}
})
.catch(() => {
});
@ -1439,7 +1443,11 @@ export default {
}
getInvListByUser(query)
.then((response) => {
this.invList = response.data || []
if (!isBlank(this.$route.query.busType) && this.formDataVisible.consignee == 2){
this.fromInvOptions = response.data || [];
}else {
this.invList = response.data || []
}
})
.catch(() => {
})

Loading…
Cancel
Save