简要描述:
获取蛋糕叔叔品牌列表
请求域名:
- http://xx.com
请求URL:
GET/plugin.decorate.admin.decorate-common.get-yz-supply-cake-brand
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
page | 否 | int | 分页 |
search{ | 否 | object | 搜索对象 |
title | 否 | string | 品牌名称 |
category_id | 否 | int | 品牌类别id |
location_id | 否 | int | 城市id |
} |
返回示例:
正确时返回:
{
"current_page": 1,
"data": [
{
"title": "维尔纳斯",
"id": 27886,
"category_id": "1",
"logo": "https://img.dangaoss.com/public/b/95/18/1317884_s.jpg",
"s_brand_id": 25,
"category_name": "蛋糕",
"city_num": 0,
"store_num": 0,
"has_many_goods": [
{
"id": 1540,
"title": "双层小鹿么么哒",
"thumb": "https://img.dangaoss.com/public/p/35/25/1352375_l.jpg",
"price": "498.00",
"brand_id": 25,
"status_name": null
},
{
"id": 1543,
"title": "双层恋上奥利奥",
"thumb": "https://img.dangaoss.com/public/p/28/18/1352368_l.jpg",
"price": "498.00",
"brand_id": 25,
"status_name": null
}
]
}
],
"first_page_url": "https://dev15.yunzmall.com/admin/shop?page=1",
"from": 1,
"last_page": 38,
"last_page_url": "https://dev15.yunzmall.com/admin/shop?page=38",
"next_page_url": "https://dev15.yunzmall.com/admin/shop?page=2",
"path": "https://dev15.yunzmall.com/admin/shop",
"per_page": 15,
"prev_page_url": null,
"to": 15,
"total": 567,
"category": [
{
"id": 1,
"title": "蛋糕"
},
{
"id": 5,
"title": "零食"
},
{
"id": 8,
"title": "鲜花"
}
]
}
错误时返回:
{
"result": 0,
"msg": "",
"data": []
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
total | int | 数据总条数 |
per_page | int | 每页显示多少条数据 |
current_page | int | 当前页 |
category | array | 品牌类别数组 id为品牌类别id,name为品牌类别名称 |
data参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | ID |
title | string | 品牌名称 |
category_name | int | 品牌类别 |
has_many_goods | array | 该品牌的商品列表 |
has_many_goods参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | ID |
title | string | 商品名称 |
thumb | string | 商品图片 |
price | string | 商品价格 |
备注:
- 更多返回错误代码请看首页的错误代码描述