Authored by maelk-liu

增加接口 app.refund.getList

... ... @@ -7,6 +7,7 @@
|[app.refund.submit](#2)|提交退货申请|
|[app.refund.detail](#3)|退货详情|
|[app.refund.setexpress](#4)|保存快递信息|
|[app.refund.getList](#5)|查询退换货列表|
## 接口描述
... ... @@ -233,3 +234,122 @@ or
}
```
### 5、保存快递信息(app.refund.getList)
#### 请求参数
| Param Name | Param Type | Required | Param Value | Desc |
| :-- | --: | --: | --: | --: |
| method | String | true | app.refund.setexpress| 请求方法|
| id |int | true | 428120 |退货申请ID |
| uid | int | true | 362729 |用户ID |
| express_company |String | true | 南京ems |快递公司名称|
| express_number |String | true | 44323575 |快递单号 |
| express_id |int | true | 2 |快递公司ID |
#### 响应内容
```json
{
"alg": "SALT_MD5",
"code": 200,
"data": {
"list": [
{
"create_time": "2016-06-17",
"goods": [
{
"cn_alphabet": "TYAKASHANanKuanLvSeJiHeTuAnPinTieTaoTouWeiYiT15DS5075G",
"color_name": "绿色",
"goods_id": "385775",
"goods_image": "http://img10.static.yhbimg.com/goodsimg/2015/11/02/06/01361c1986f1dd2eaff70e1f85a35bfacd.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_type": "ordinary",
"product_id": "301131",
"product_name": "TYAKASHA 男款绿色几何图案拼贴套头卫衣 ",
"product_skn": "51168269",
"product_sku": "939124",
"sales_price": "199",
"size_name": "F"
}
],
"id": "125954",
"order_code": "1610005607",
"order_create_time": "2016-06-17 14:15:05",
"refund_type": 2,
"status": "0",
"status_name": "提交申请",
"canCancel":"Y"
},
{
"create_time": "2016-04-21",
"goods": [
{
"cn_alphabet": "ChenShanT009",
"color_name": "蓝色",
"goods_id": "337829",
"goods_image": "http://img10.static.yhbimg.com/goodsimg/2015/11/09/05/01b9378014f8b824306b5308f5d32eadc1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_type": "ordinary",
"product_id": "254145",
"product_name": "AMES BROS 男潮童110-160码剪裁设计纯色长袖衬衫",
"product_skn": "51142083",
"product_sku": "869691",
"sales_price": "79",
"size_name": "140"
},
{
"cn_alphabet": "ChenShanT009",
"color_name": "蓝色",
"goods_id": "337829",
"goods_image": "http://img10.static.yhbimg.com/goodsimg/2015/11/09/05/01b9378014f8b824306b5308f5d32eadc1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_type": "ordinary",
"product_id": "254145",
"product_name": "AMES BROS 男潮童110-160码剪裁设计纯色长袖衬衫",
"product_skn": "51142083",
"product_sku": "869690",
"sales_price": "79",
"size_name": "130"
},
{
"cn_alphabet": "JiuKouShanTHRIVETHISNEWYEARXianLiangShangWuRenShiHeKaYiTaoJKSHK03",
"color_name": "彩色",
"goods_id": "425783",
"goods_image": "http://img10.static.yhbimg.com/goodsimg/2015/12/22/08/01e056030e9d209714651c54ea150e56d0.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_type": "gift",
"product_id": "331145",
"product_name": "九口山 Thrive this new year 限量商务人士贺卡一套",
"product_skn": "51185287",
"product_sku": "1006287",
"sales_price": "0",
"size_name": "F"
},
{
"cn_alphabet": "MACROPUSMCPA504BK1101ShuangJianBao",
"color_name": "灰色",
"goods_id": "338947",
"goods_image": "http://img11.static.yhbimg.com/goodsimg/2015/09/29/08/010f35a0adf99c9379548eb7f141839a7a.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
"goods_type": "price_gift",
"product_id": "260951",
"product_name": "MACROPUS 简约毛呢双肩包",
"product_skn": "51146106",
"product_sku": "870894",
"sales_price": "11",
"size_name": "F"
}
],
"id": "429128",
"order_code": "16093901",
"order_create_time": "2016-04-21 14:33:32",
"refund_type": 1,
"status": "10",
"status_name": "审核通过",
"canCancel":"Y"
}
],
"page": 1,
"total": 2,
"total_page": 1
},
"md5": "2c60239ca2b6b218cdcfc4ede865ee08",
"message": "ok"
}
```
... ...