...
|
...
|
@@ -7,7 +7,6 @@ Page({ |
|
|
*/
|
|
|
data: {
|
|
|
expressSender: '',
|
|
|
// logisticsList: [ {'content':'南京市正在派送中,请准备签收(派件人:小明 电话:18323458818)', 'time': '2018.09.15 19:23:59'}, {'content':'南京市正在派送中,请准备签收(派件人:小明 电话:18323458818)', 'time': '2018.09.15 19:23:59'}, {'content':'南京市正在派送中,请准备签收(派件人:小明 电话:18323458818)', 'time': '2018.09.15 19:23:59'}],
|
|
|
expressCompanyName: '',
|
|
|
wayBillCode: '',
|
|
|
expressInfoDetailList: [],
|
...
|
...
|
@@ -18,18 +17,16 @@ Page({ |
|
|
*/
|
|
|
onLoad: function (options) {
|
|
|
// let orderCode = '9790272561152';
|
|
|
let orderCode = options.orderCode;
|
|
|
let orderCode = options.orderCode ? options.orderCode : '';
|
|
|
this.fetchLogisticsInfo(orderCode);
|
|
|
},
|
|
|
|
|
|
fetchLogisticsInfo: function (orderCode) {
|
|
|
let that = this;
|
|
|
// let params = {
|
|
|
// orderCode,
|
|
|
// debug: 'XYZ'
|
|
|
// }
|
|
|
let params = {
|
|
|
orderCode
|
|
|
orderCode,
|
|
|
uid: '500031132',
|
|
|
debug: 'XYZ'
|
|
|
}
|
|
|
|
|
|
let api = new logisticsService();
|
...
|
...
|
|