说明 / 示例
# 通过订单id 查询订单详情
## 请求
```language
{
"id":2
}
```
## 返回
总价
商品详情, 其中id为子订单id
```language
{
"list": [
{
"edit_time": null,
"id": 4,
"is_delete": "0",
"num": 1,
"order_price": 1200,
"status": "ddfk",
"store_ershou_shangpin_id": null,
"store_father_order_id": 2,
"store_peijian_id": null,
"store_shangpin_id": 1,
"tuihuo_addr": null,
"type": "0"
},
{
"edit_time": null,
"id": 5,
"is_delete": "0",
"num": 1,
"order_price": 1200,
"status": "ddfk",
"store_ershou_shangpin_id": 3,
"store_father_order_id": 2,
"store_peijian_id": null,
"store_shangpin_id": null,
"tuihuo_addr": null,
"type": "1"
},
{
"edit_time": null,
"id": 6,
"is_delete": "0",
"num": 1,
"order_price": 1200,
"status": "ddfk",
"store_ershou_shangpin_id": null,
"store_father_order_id": 2,
"store_peijian_id": 2,
"store_shangpin_id": null,
"tuihuo_addr": null,
"type": "2"
}
],
"msg": "",
"status": 1,
"sum_money": 3600
}
```