|
|
|
@ -1178,7 +1178,15 @@ export default {
|
|
|
|
|
curAction: this.inputQuery.supplementOrderType
|
|
|
|
|
}
|
|
|
|
|
candidateBusType(query).then((response) => {
|
|
|
|
|
this.orderTypeList = response.data || []
|
|
|
|
|
let data = response.data || []
|
|
|
|
|
if (data != null && data.length > 0) {
|
|
|
|
|
for (var i = 0; i < data.length; i++) {
|
|
|
|
|
if (data[i].action != this.inputQuery.action) {
|
|
|
|
|
this.orderTypeList.push(data[i]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}).catch(() => {
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|