Authored by caoyan

Update 新品到着.md

1 ## 1、推荐店铺## 1 ## 1、推荐店铺##
2 2
3 -(method=app.rec.shop) 3 +(method=app.newproduct.rec.shop)
4 请求方式:get 4 请求方式:get
5 #### 请求参数 5 #### 请求参数
6 | 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 | 6 | 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
@@ -13,7 +13,7 @@ @@ -13,7 +13,7 @@
13 13
14 注意,通用的头部没有列出。 14 注意,通用的头部没有列出。
15 请求示例 15 请求示例
16 -http://192.168.102.205:8080//gateway/?method=app.rec.shop&yh_channel=1&limit=10&page=1&uid=10961101&debug=XYZ 16 +http://192.168.102.205:8080//gateway/?method=app.newproduct.rec.shop&yh_channel=1&limit=10&page=1&uid=10961101&debug=XYZ
17 ### 响应 17 ### 响应
18 code为200即为成功且只会返回200,每次都会有响应结果。 18 code为200即为成功且只会返回200,每次都会有响应结果。
19 响应JSON格式如下所示: 19 响应JSON格式如下所示:
@@ -40,5 +40,76 @@ code为200即为成功且只会返回200,每次都会有响应结果。 @@ -40,5 +40,76 @@ code为200即为成功且只会返回200,每次都会有响应结果。
40 "message": "Search List." 40 "message": "Search List."
41 } 41 }
42 ``` 42 ```
  43 +## 2、推荐品牌##
  44 +
  45 +(method=app.newproduct.rec.brand)
  46 +请求方式:get
  47 +#### 请求参数
  48 +| 参数名称 | 参数类型 | 可否为空 | 示例 | 默认值 | 备注 |
  49 +|:-------| -----:|-----:|-----:|-----:|----:|
  50 +|yh_channel|Integer|否|1|null|频道|
  51 +|limit|Integer|是|10|20|每页个数|
  52 +|page|Integer|是|1|数1|第几页|
  53 +|uid|Integer|是|10961123|null|用户ID|
  54 +
43 55
  56 +注意,通用的头部没有列出。
  57 +请求示例
  58 +http://192.168.102.205:8080//gateway/?method=app.rec.shop&yh_channel=1&limit=10&page=1&uid=10961101&debug=XYZ
  59 +### 响应
  60 +code为200即为成功且只会返回200,每次都会有响应结果。
  61 +响应JSON格式如下所示:
  62 +```json
  63 +{
  64 + "code": 200,
  65 + "data": {
  66 + "total": 10,
  67 + "page_total": 1,
  68 + "page": 1,
  69 + "browse_brand_list": [
  70 + {
  71 + "brand_ico": "http://img11.static.yhbimg.com/yhb-img01/2013/01/16/09/01f515687de080f94243cb1aa0fedb2fe1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
  72 + "brand_name": "得宝旗舰店",
  73 + "brand_domain": "shop$15",
  74 + "brand_id": 15,
  75 + "status": 1,
  76 + "type": 1,
  77 + "decorator_template_type": 2,
  78 + "shop_template_type": 2,
  79 + "shop_id":1258
  80 + "new_product_num": 15
  81 + }
  82 + ],
  83 + "hot_brand_list": [
  84 + {
  85 + "brand_ico": "http://img11.static.yhbimg.com/yhb-img01/2013/01/16/09/01f515687de080f94243cb1aa0fedb2fe1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
  86 + "brand_name": "得宝旗舰店",
  87 + "brand_domain": "shop$15",
  88 + "brand_id": 15,
  89 + "status": 1,
  90 + "type": 1,
  91 + "decorator_template_type": 2,
  92 + "shop_template_type": 2,
  93 + "shop_id":1258
  94 + "new_product_num": 15
  95 + }
  96 + ],
  97 + "new_brand_list": [
  98 + {
  99 + "brand_ico": "http://img11.static.yhbimg.com/yhb-img01/2013/01/16/09/01f515687de080f94243cb1aa0fedb2fe1.jpg?imageMogr2/thumbnail/{width}x{height}/extent/{width}x{height}/background/d2hpdGU=/position/center/quality/80",
  100 + "brand_name": "得宝旗舰店",
  101 + "brand_domain": "shop$15",
  102 + "brand_id": 15,
  103 + "status": 1,
  104 + "type": 1,
  105 + "decorator_template_type": 2,
  106 + "shop_template_type": 2,
  107 + "shop_id":1258
  108 + "new_product_num": 15
  109 + }
  110 + ]
  111 + },
  112 + "message": "Search List."
  113 +}
  114 +```
44 115