- 商城侧 - 后台
- 用户
- 商品
- 设置
- 营销
- 订单
- 分销
- 回调
- 供应商
- 门店
- 系统
- 财务
- 商城侧 - 门店
- 商城侧 - 收银台
- 商城侧 - 供应商
- 商城侧 - 客服
获取门店分类
开发中
GET
/adminapi/store/category/cascader_list/{type}
请求参数
Authorization
在 header 添加参数
Authori-Zation
示例:
Authori-Zation: ********************
Path 参数
type
string
必需
示例值:
1
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/adminapi/store/category/cascader_list/1' \
--header 'Authori-Zation;'
返回响应
🟢200成功
application/json
Body
status
integer
必需
msg
string
必需
data
array [object {4}]
必需
value
integer
id
label
string
名称
pid
integer
父id
children
array [object {3}]
子集
示例
{
"status": 200,
"msg": "ok",
"data": [
{
"value": 12,
"label": "测试是",
"pid": 0,
"children": [
{
"value": 13,
"label": "测试是1",
"pid": 12
}
]
},
{
"value": 10,
"label": "测试",
"pid": 0,
"children": [
{
"value": 11,
"label": "测试1",
"pid": 10
}
]
}
]
}