简要描述:
- pos收银-获取分类列表
请求域名:
- http://xx.com
请求URL:
route=plugin.shop-pos.frontend.goods.goodsTypeList
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
parent_id | 否 | int | 父级分类ID |
level | 否 | int | 分类层级 |
返回示例:
正确时返回:
{
"result": 1,
"msg": "成功",
"data": {
"list": [
{
"id": 2,
"parent_id": 1,
"name": "2",
"thumb": "images/1/2019/12/oleLBE9pWkxb4BLRXBhBzHZpbt9txC.jpg",
"thumb_url": "http://shop-yunzshop-com.oss-cn-hangzhou.aliyuncs.com/images/1/2019/12/oleLBE9pWkxb4BLRXBhBzHZpbt9txC.jpg"
},
{
"id": 17,
"parent_id": 1,
"name": "1的分类3",
"thumb": "images/1/2019/12/oleLBE9pWkxb4BLRXBhBzHZpbt9txC.jpg",
"thumb_url": "http://shop-yunzshop-com.oss-cn-hangzhou.aliyuncs.com/images/1/2019/12/oleLBE9pWkxb4BLRXBhBzHZpbt9txC.jpg"
},
{
"id": 22,
"parent_id": 1,
"name": "125423523435",
"thumb": "",
"thumb_url": ""
}
],
"max_level": "3"
}
}
错误时返回:
{
}
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
名称 | 类型 | 说明 |
list | arr | 分类列表 |
max_level | int | 分类最大层级 |