## 歷史訂單查詢
?
**簡要描述:**
* 歷史訂單查詢
**請求URL:**
* `https://api.zbztb.cn/api/public/v1/my/orders/all`
**請求方式:**
* GET
**請求頭參數:**
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| Authorization | 是 | string | 用戶登錄成功獲取的token值 |
**請求體參數**:
| 參數名 | 必選 | 類型 | 說明 |
| --- | --- | --- | --- |
| type | 是 | number | 1:全部訂單 2:待付款 3:待發貨 |
**返回示例**
~~~
{
"message": {
"count": 1,
"orders": [{
"order_id": 428,
"user_id": 23,
"order_number": "HMDD20190802000000000428",
"order_price": 13999,
"order_pay": "0",
"is_send": "否",
"trade_no": "",
"order_fapiao_title": "個人",
"order_fapiao_company": "",
"order_fapiao_content": "",
"consignee_addr": "廣東省廣州市海珠區新港中路397號",
"pay_status": "1",
"create_time": 1564731518,
"update_time": 1564731518,
"order_detail": null,
"goods": [{
"id": 717,
"order_id": 428,
"goods_id": 43986,
"goods_price": 13999,
"goods_number": 1,
"goods_total_price": 13999,
"goods_name": "海信(Hisense)LED55MU9600X3DUC 55英寸 4K超高清量子點電視 ULED畫質 VIDAA系統",
"goods_small_logo": "http://image5.suning.cn/uimg/b2c/newcatentries/0000000000-000000000160455569_1_400x400.jpg"
}],
"total_count": 1,
"total_price": 13999
}]
},
"meta": {
"msg": "獲取訂單列表成功",
"status": 200
}
}
~~~