简要描述:
- 获取商品分类列表
请求URL:
GET/plugin.appointment.frontend.project-goods.get-category-list
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|
返回示例:
正确时返回:
{
"result": 1,
"msg": "ok",
"data": {
"list": [
{
"id": 1001, //一级分类id
"name": "食品酒水", //一级分类名称
"enabled": 1,
"childrens": [
{
"id": 1002, //二级分类id
"name": "酒水礼盒", //二级分类名称
"enabled": 1,
"childrens": [
{
"id": 1004, //三级分类id
"name": "白酒", //三级分类名称
"enabled": 1,
"childrens": []
},
]
}
]
},
]
}
],
"level": 3 // 商城分类层级设置 ,类型int, 2为二级, 3为三级级
}
}
错误时返回:
返回参数说明:
参数名 | 类型 | 说明 |
---|---|---|
id | int | 项目分类ID |
name | string | 项目分类名称 |
备注:
- 更多返回错误代码请看首页的错误代码描述