简要描述:
- 供应商列表接口(含分页)
请求域名:
- http://xx.com
请求URL:
POST/plugin.supplier.frontend.supplier.get-supplier-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
kwd | 否 | string | 供应商名称 |
返回示例:
正确时返回:
{
username: "碳酸果汁",
id: 3,
supplier_id: 3,
has_many_goods: [
{
goods_id: 18,
supplier_id: 3,
has_one_goods: {
thumb: "http://dev3.yunzshop.com/attachment/images/3/2017/05/hvY2fy99d22c9c2do19v1Reocohhyx.png",
title: "1",
price: "100.00",
id: 18,
status_name: null
}
},
{
goods_id: 32,
supplier_id: 3,
has_one_goods: {
thumb: "http://dev3.yunzshop.com/attachment/images/3/2017/08/GRSI9Jj8Hgf42i2g64l568iIgOiGwW.jpg",
title: "2",
price: "100.00",
id: 32,
status_name: null
}
}
],
goods_total: 2
}
错误时返回:
{
"errcode": 500,
"errmsg": "invalid appid"
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
username | string | 供应商名称 |
goods_total | int | 供应商在售商品数量 |
has_many_goods | array | 商品数组 |
-has_one_goods | array | 商品信息数组 |
--thumb | string | 商品图 |
--title | string | 商品名称 |
--price | number | 商品价格 |
备注:
- 更多返回错误代码请看首页的错误代码描述