|
|
@@ -79,7 +79,7 @@ export function orderPay(data){
|
|
|
* @param string uni
|
|
|
*/
|
|
|
export function getOrderDetail(uni){
|
|
|
- return request.get('order/detail/'+uni);
|
|
|
+ return request.get('order/v2/detail/'+uni);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -173,7 +173,7 @@ export function getCouponsOrderPrice(price, data){
|
|
|
*
|
|
|
*/
|
|
|
export function orderCreate(key,data){
|
|
|
- return request.post('order/create/'+key,data);
|
|
|
+ return request.post('order/v2/create/'+key,data);
|
|
|
}
|
|
|
/**
|
|
|
* 订单查询物流信息
|
|
|
@@ -190,5 +190,5 @@ export function express(uni) {
|
|
|
* @returns {*}
|
|
|
*/
|
|
|
export function postOrderComputed(key, data) {
|
|
|
- return request.post("/order/computed/" + key, data);
|
|
|
+ return request.post("/order/v2/computed/" + key, data);
|
|
|
}
|