**請求方式:** GET
**請求地址:** `/taxi.php/orderDetail`
**參數說明:**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| order_no| String| yes | 訂單id|
**返回信息**
| 參數 | 參數類型 | 必須 | 說明|
| ----------- | ------------------------------ | ------------ | --- |
| estimatePrice| int| yes |預估金額,單位分|
| orderTotalFee| int| yes |訂單金額|
| level| String| yes |評分|
| card| String| yes |車牌號|
| carBrand| String| yes |車輛品牌(例如:吉利)|
| carType| String| yes |車輛型號(例如:S90L)|
| color| String| yes |車輛顏色|
| name| String| yes |司機姓名|
| orderCnt| String| yes |司機接單數|
| phone| String| yes |司機手機號|
| avatar| String| yes |司機頭像地址|
| amount| int| yes |明細金額,單位分|
| chargeCode| String| yes |明細編碼(產生費用,費用項才會漏出) start_fee:訂單起步價;travel_km_fee:里程費用;travel_minute_fee:時長費用;long_km_fee:長途費;long_km2_fee:超遠長途費;night_fix, 夜間起步費用;night_fee:夜間行駛超長費用;lowest_cost_fee:最低消費補充差額(預約單最低消費30元,例如一筆預約單初始預估18元,則最低消費補充差額為12元);discount_fee:折扣金額;park_fee:停車費用;bridge_fee:路橋費;other_fee:其他費用;refund_fee:退款金額(客服改價改低/免單產生的退款金額);hight_speed_fee:高速費 ; mend_deduct_fee: 補扣費用(客服改價改高產生的補扣金額)|
| chargeDesc| String| yes |明細描述|
**返回示例:**
```
{
"errcode": 0,
"errmsg": "ok",
"data": {
"estimatePrice": 85,
"orderTotalFee": 1,
"level": "5.0",
"card": "浙A1430",
"carBrand": "沃爾沃",
"carType": "S80L",
"color": "紅色",
"name": "建師傅",
"orderCnt": 22,
"phone": "13773092734",
"avatar": "http://ccimgs.oss.aliyuncs.com/null",
"detailFeeVos": [
{
"amount": 1,
"chargeCode": "start_fee",
"chargeDesc": "訂單起步價"
}
]
}
}