|
|
|
|
@ -111,6 +111,7 @@ |
|
|
|
|
logisticsNo:'', |
|
|
|
|
company:'', |
|
|
|
|
companyCode:'', |
|
|
|
|
consigneePhone:'' |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
onLoad(options) { |
|
|
|
|
@ -118,6 +119,7 @@ |
|
|
|
|
this.logisticsNo = options.logisticsNo; |
|
|
|
|
this.company = options.company; |
|
|
|
|
this.companyCode = options.companyCode; |
|
|
|
|
this.consigneePhone = options.phone |
|
|
|
|
if(this.logisticsNo){ |
|
|
|
|
this.getInfo() |
|
|
|
|
} |
|
|
|
|
@ -131,7 +133,7 @@ |
|
|
|
|
param: JSON.stringify({ |
|
|
|
|
"com": this.companyCode, |
|
|
|
|
"num": this.logisticsNo, |
|
|
|
|
"phone": '17852327323', |
|
|
|
|
"phone": this.consigneePhone, |
|
|
|
|
"from": "", |
|
|
|
|
"to": "", |
|
|
|
|
"resultv2": "4", |
|
|
|
|
@ -148,7 +150,8 @@ |
|
|
|
|
}, |
|
|
|
|
data: param, |
|
|
|
|
success:(res =>{ |
|
|
|
|
this.options = res.data.data |
|
|
|
|
this.options = res.data.data; |
|
|
|
|
console.log(this.options) |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
|