简要描述:
请求域名:
请求URL:
GET:route=plugin.store-cashier.frontend.store.order-detail
参数:
参数名 |
是否必须 |
类型 |
说明 |
order_id |
是 |
int |
订单 ID |
返回示例:
正确时返回:
{
"result": 1,
"msg": "ok",
"data": {
"id": 1,
"uid": 1,
"order_sn": "SH20170302032407269208",
"price": 480,
"goods_price": 600,
"goods_total": 1,
"create_time": 1488425047,
"finish_time": 0,
"pay_time": 0,
"send_time": 0,
"cancel_time": 0,
"status_name": "待付款",
"address_info": {
"address":"地址",
"mobile":"18545571024",
"realname":"真实姓名"
},
"status_name": "待付款",
"button_models": [
{
"name": "付款",
"api": "/order/op/pay",
"value": 1
},
{
"name": "取消订单",
"api": "/order/op/cancelPay",
"value": 9
}
],
"has_many_order_goods": [
{
"goods_id": 1,
"is_course": 1,
"goods_price": "300.00",
"total": 1,
"price": 300,
"title": "外套",
"thumb": "http://demo.yunzshop.com/attachment/images/sz_yi/3/2017/01/ckUQfl.jpg"
},
{
"goods_id": 2,
"is_course": 0,
"goods_price": "100.00",
"total": 3,
"price": 300,
"title": "T 恤",
"thumb": "http://demo.yunzshop.com/attachment/images/sz_yi/1/2017/03/9usdl9.jpg"
}
]
}
}
错误时返回:
{
"result": 0,
"msg": "缺少访问参数",
"data": []
}
{
"result": 0,
"msg": "未找到数据",
"data": []
}
返回参数说明:
参数名 |
类型 |
说明 |
id |
int |
订单 ID |
order_sn |
string |
订单号 |
price |
int |
订单金额(实际支付) |
goods_price |
int |
商品金额 |
goods_total |
int |
所有商品的数量 |
goods_option_title |
int |
规格标题 |
status_name |
string |
订单状态 |
button_models |
array |
按钮 |
has_many_order_goods |
array |
该订单下的商品列表 |
button_models |
类型 |
说明 |
name |
string |
按钮文字 |
api |
string |
按钮关联的 API 路径 |
value |
int |
显示在 HTML 表单的 Value 值 |
button_models key |
按钮名 |
|
1 |
支付 |
|
5 |
确认收货 |
|
8 |
查看物流 |
|
9 |
取消订单 |
|
10 |
评论 |
|
12 |
删除订单 |
|
13 |
申请退款 |
|
18 |
已退款/退款中 |
|
19 |
已评价 |
|
20 |
确认核销 |
|
21 |
转账信息 |
|
22 |
店长确认支付 |
|
23 |
店长确认发货 |
|
24 |
店长取消发货 |
|
25 |
店长确认收货 |
|
26 |
店长关闭订单 |
|
has_many_order_goods |
类型 |
说明 |
goods_id |
int |
商品 ID |
goods_price |
int |
商品价格 |
total |
int |
订单中该商品的数量 |
goods_option_title |
int |
订单中该商品的规格标题 |
price |
int |
实际支付的该商品的总价 |
title |
string |
商品名称 |
thumb |
string |
商品图片 |
addres_info参数名 |
类型 |
说明 |
address |
string |
地址 |
realname |
string |
姓名 |
mobile |
string |
手机号 |
is_course |
int |
0:不是课程商品 1:是课程商品 |
备注: