用户获取系统配置的菜单接口,菜单数据通过管理端配置。
菜单接口
请求方法:GET
是否鉴权:否
请求编码:Content-Type:application/x-www-form-urlencoded
响应编码:Content-Type:application/json;charset=UTF-8
请求地址:index/index/menuList
请求参数:
参数名 | 参数类型 | 是否必填 | 参数说明 | 示例值 |
---|---|---|---|---|
position | String | 是 | 显示位置 | 参考管理端的字段管理字段menu_position |
platform | String | 是 | 客户端类型 | 参考管理端的字段管理字段platform |
- 成功示例:
javascript
{
"data": [
{
"title": "题库资源",
"url": "/subpages/exam/collection/list",
"image": "https://qiniucloud.qqdeveloper.com/uploads/images/20231001/20231001203831736615581.png",
"params": "",
}],
"code": 100,
"msg": "请求成功"
}
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
参数名 | 参数类型 | 是否必有 | 参数说明 | 示例值 |
---|---|---|---|---|
title | string | 是 | 菜单名称 | |
url | string | 是 | 跳转地址 | |
image | string | 是 | 菜单图标地址 | |
params | string | 否 | 跳转参数 |
- 失败示例:
javascript
{
"code": 101,
"data": [],
"msg": "请求失败"
}
1
2
3
4
5
2
3
4
5