**请求方式:** 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": "订单起步价"
}
]
}
}