...
|
...
|
@@ -17,18 +17,14 @@ export default class DeliverGoodsService { |
|
|
expressId: expressId,
|
|
|
expressNumber: expressNumber,
|
|
|
shopId: shopId,
|
|
|
expressGoodsMap: expressGoodsMap,
|
|
|
expressGoodsMap: JSON.stringify(expressGoodsMap),
|
|
|
method:'app.purchase.delivery',
|
|
|
}
|
|
|
})
|
|
|
.then(data => {
|
|
|
console.log(data);
|
|
|
console.log('deliveryGoods');
|
|
|
return data;
|
|
|
})
|
|
|
.catch(error => {
|
|
|
console.log(error);
|
|
|
console.log('deliveryGoods error');
|
|
|
throw error;
|
|
|
});
|
|
|
}
|
...
|
...
|
|