**简要描述:**
- 订单商品信息界面,由商品详情页或者购物车页面点击购买进入展示的商品订单信息
**请求URL:**
- ` index/Order/orderShow `
**参数:**
|参数|必选|类型|描述|
|:-------|:-------|:-------|:-------|
| token | 是 | string| 用户token|
| from |是 | string| 来源:goods_detail 表示从详情页进入,cart 表示从购物车进入 |
| - goods_info |是 |object | 商品信息 |
| cart_id |是 | number| 购物车id,详情页进入传0 |
| goods_id | 是 |number| 商品id |
| attr_value_id |是 | number| 商品属性id,如果有活动,则是对应的活动商品的属性 |
| goods_num | 是 |number| 商品数量,大于0 |
**请求示例**
```
$.post(url + 'index/Order/orderShow', {
token : '1A25D044E590503C68D04CFF8F924161',
from : 'goods_detail',
goods_info : [
{
cart_id : 0,
goods_id : 5,
attr_value_id : 571,
goods_num : 1
}
]
}, function (res) {
console.log(JSON.parse(res));
});
```
**返回示例**
```
{
"code": 1,
"msg": "请求成功",
"data": {
"balance": "10000.00",
"address": {
"id": 6,
"user_id": 1,
"name": "嘻嘻",
"phone": "13100000012",
"province": "安徽省",
"city": "合肥市",
"area": "瑶海区",
"detail": "火车站"
},
"goods_info": [
{
"cart_id": 0,
"img": "/uploads/20200401/d718cc8ffbf6d75e306960956e5fc22e.jpg",
"title": "小米101",
"attr": "l,白色",
"nums": 1,
"price": "2500.00",
"is_postage": 1,
"postage": "5.00"
}
],
"coupon_list": [
{
"id": 1,
"coupon_title": "满288减2",
"coupon_price": "28.50",
"coupon_require_price": "300.00",
"start_time": "2020-03-30 17:14:50",
"end_time": "2020-03-29 00:00:00",
"is_select": 1
}
],
"goods_num": 1,
"total_price": 2500,
"postage": 0,
"coupon": "28.50",
"pay_price": 2471.5
}
}
```
**data返回值说明**
|参数|类型|描述|
|:-------|:-------|:-------|
| balance | string| 用户余额 |
| goods_num |int |商品数量 |
| total_price |decimal |商品总金额 |
| postage |decimal |应付邮费 |
| coupon |decimal |优惠券抵扣金额 |
| pay_price |decimal |用户应付金额 |
| - address |object | 地址信息 |
| id | number| 地址id |
| user_id | number| 用户id |
| name | string| 收件人姓名 |
| phone | string| 收件人手机 |
| province | string| 省 |
| city | string| 市 |
| area | string| 县或区 |
| detail | string| 详细地址 |
| - goods_info |object | 商品信息 |
| cart_id | number| 购物车id |
| img | string| 商品图片 |
| title | string| 商品名称 |
| attr | string| 商品属性 |
| nums | number| 商品数量 |
| price | string| 商品单价 |
| is_postage | number| 是否包邮:1是,0否 |
| postage | string| 邮费 |
| - coupon_list |object | 可用优惠券列表 |
| id | number| 优惠券id |
| coupon_title | string| 优惠券名称 |
| coupon_price | string| 优惠券金额 |
| coupon_require_price | string| 满足使用的金额 |
| start_time | string| 生效时间 |
| end_time | string| 失效时间 |
| is_select | number| 是否选择:1是,0否 |
- 文档说明
- 商城部分
- 商城首页(Index/index)
- 商品分类(Goods/cate)
- 商品列表(Goods/goodsList)
- 商品详情(Goods/goodsDetail)
- 商品属性获取(Goods/goodsAttr)
- 收藏/取消收藏(Goods/goodsCollect)
- 加购物车(Goods/cartAdd)
- 立即购买(Goods/buyNow)
- 优惠券列表(Index/coupon)
- 领取优惠券(Index/couponGet)
- 文章列表(Index/articleList)
- 文章详情(Index/articleSee)
- 签到页面(Index/signPageShow)
- 用户签到(Index/signIn)
- 签到记录(Index/signRecord)
- 文章分类(Index/articleCate)
- 商品评价列表(Goods/goodsComment)
- 登录部分
- 获取验证码(Login/getCode)
- 用户注册(Login/reg)
- 用户登录(Login/login)
- 找回密码(Login/resetPass)
- 用户协议(Login/agreement)
- 个人中心
- 个人首页(User/index)
- 修改密码(User/passReset)
- 修改头像昵称(User/userEdit)
- 地址列表(User/addressList)
- 地址操作(User/addressOperate)
- 收藏列表(User/collectList)
- 优惠券列表(User/userCoupon)
- 余额页面(User/balancePage)
- 余额充值(User/balanceRecharge)
- 账单列表(User/billList)
- 积分页面(User/integralPage)
- 购物车部分
- 购物车列表(Cart/lists)
- 修改购物车商品数量(Cart/setNumber)
- 删除购物车商品(Cart/del)
- 清空失效商品(Cart/unEffectiveDel)
- 订单部分
- 订单商品信息界面(Order/orderShow)
- 获取订单可用优惠券(Order/orderAvaCoupon)
- 提交订单(Order/orderSub)
- 余额支付(Order/balancePay)
- 微信支付(Order/wxPay)
- 订单列表(Order/OrderList)
- 订单详情(Order/orderDetail)
- 取消订单(Order/orderCancel)
- 申请退款界面(Order/orderRefundShow)
- 提交退款申请(Order/refundApply)
- 查看物流(Order/orderLogistics)
- 确认收货(Order/confirmReceipt)
- 评价订单(Order/orderComment)
- 删除订单(Order/orderDel)
- 其他
- 上传图片(Upload/img)
- 获取推荐商品(Goods/getRecGoods)