**請求方式:** GET
**請求地址:** `/taxi.php/orderHistory`
注意事項:
~~~
status: 1:未派單;2:已派單;3:乘客上車,計費開始;8:行程結束,計費結束;5:訂單待支付;7:訂單已支付,待評價;6:訂單已評價;4:訂單系統取消;9:開始服務;10:訂單取消,待付款;11:訂單改派中;12:司機已到達;20:用戶取消;26:司機取消;27:第三方取消;
~~~
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| uuid| String| yes | 用戶uuid |
|page|Integer|yes|頁數|
|number|Integer|no|每頁條數 默認10|
**返回信息**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| out_order| String| yes | 曹操專車訂單號|
| estimate_price| int| yes | 預估費用單位分|
| origin_total_fee| int| yes | 訂單金額|
| total_fee| int| yes | 實際支付金額|
| pay_total| int| yes | 已支付金額|
| start_time| int| yes | 訂單開始時間|
| end_time| int| yes | 訂單結束時間|
| status| int| yes | 訂單狀態|
| start_name| String| yes | 出發點名稱|
| end_name| String| yes | 目的地名稱|
**返回示例:**
```{
"errcode": 0,
"errmsg": "ok",
"data": [
{
"id": 26,
"out_order": "289667102000",
"estimate_price": 85,
"origin_total_fee": 0,
"total_fee": 0,
"start_time": 1594463491,
"end_time": null,
"status": 6,
"start_name": "",
"end_name": ""
}
]
}