diff --git a/src/views/collect/DealOrder.vue b/src/views/collect/DealOrder.vue index b48480eb..719fe3a0 100644 --- a/src/views/collect/DealOrder.vue +++ b/src/views/collect/DealOrder.vue @@ -636,7 +636,11 @@ export default { }; findFromCorp(cQuery) .then((response) => { - this.fromInvOptions = response.data || []; + if (!isBlank(this.$route.query.busType) && this.$route.query.busType == "SC73200069614118"){ + 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.$route.query.busType == "SC73200069614118"){ + this.fromInvOptions = response.data || []; + }else { + this.invList = response.data || [] + } }) .catch(() => { })