#訂單詳情##
### 接口說明 ###
訂單詳情
### 接口地址 ###
<pre>
/points/Order/getOrderinfo
</pre>
### 傳遞參數 ###
>參數類型:**POST**
| 必填|參數 | 類型 | 說明 |
|:-------------:|:-------------|:-------------|:-------------|
| token | true | string | 用戶token(管理后臺),非會員token |
| order_id| true | int | 訂單id |
---
### 返回參數 ###
>返回類型:**JSON**
| 參數 | 類型 | 說明 |
|:-------------:|:-------------|:-------------|
### ###
<pre style="background:#222;color:#35b558">
{
"code": 200,
"data": {
"data": {
"order_id": 1,
"goods_id": 1,
"goods_name": "夫是德國1",
"shop_name": "紅旗",
"exchange_type": 1,
"member_name": "小五爺",
"member_nickname": "",
"recipient": "小五爺",
"recipient_phone": "18010523601",
"status": 5,
"exchange_code": "GM45VCZ4",
"spend_points": 12,
"address": "收貨地址",
"addtime": 1569745410,
"alipay_account": "2344343ali", // 支付寶賬號
"alipay_bindcard_realname": "手動閥" // 支付寶綁定卡的真實姓名
},
"status_record": [
{
"order_id": 1,
"status": 3,
"remarks": "付款后超過7天未進行核銷或狀態變更 后臺操作",
"content": "已付款 --> 已取消",
"operator": "admin",
"addtime": 1569755410
},
{
"order_id": 1,
"status": 5,
"remarks": "核銷成功",
"content": "已付款 --> 確認收貨/兌換成功",
"operator": "商家(航天員)",
"addtime": 1570519614
}
]
},
"msg": "訂單詳情獲取成功",
"tmencrypt": 0,
"tmtime": 1573543752,
"tmcode": 1
}
</pre>