|
@@ -206,14 +206,16 @@ export default {
|
|
|
|
|
|
//获取订单详情
|
|
|
getDetail(id) {
|
|
|
- uni.$u.http.get(`/api/order/read?id=${id}`).then((res) => {
|
|
|
- this.orderDetail = res;
|
|
|
- //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
|
|
|
- if (res.container) {
|
|
|
- this.transportType = res.container.transport_type.name;
|
|
|
- }
|
|
|
- this.title = res.status_name;
|
|
|
- });
|
|
|
+ uni.$u.http
|
|
|
+ .post(`/api/order/merchant_order_detail`, { id })
|
|
|
+ .then((res) => {
|
|
|
+ this.orderDetail = res;
|
|
|
+ //直接在dom中使用会报错,首先判断字段存不存在,重新复制后使用
|
|
|
+ if (res.container) {
|
|
|
+ this.transportType = res.container.transport_type.name;
|
|
|
+ }
|
|
|
+ this.title = res.status_name;
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
//跳转支付
|