On this page
权限列表
接口URL
请求方式
GET
Content-Type
application/x-www-form-urlencoded
请求Header参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
token | eyj...Nj | String | 是 | 用户token |
请求Query参数
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
type | rule | String | 是 | 类型:rule权限,menu菜单 |
成功响应示例
json5
{
"msg": "ok",
"data": {
"total": 33,
"items": [
{
"id": 2,
"title": "课程",
"access_id": 0,
"content": "Course",
"method": "GET",
"ismenu": 1,
"hidden": 0,
"status": 1,
"orderby": 10,
"created_time": "2021-02-27T11:59:34.000Z",
"updated_time": "2021-02-27T11:59:34.000Z",
"children": [
{
"id": 9,
"title": "图文",
"access_id": 2,
"content": "Media",
"method": "GET",
"ismenu": 1,
"hidden": 0,
"status": 1,
"orderby": 10,
"created_time": "2021-02-27T12:33:44.000Z",
"updated_time": "2021-02-27T12:33:44.000Z",
"children": []
},
// ...
]
},
// ...
]
},
"code": 20000
}
错误响应示例
json5
{
"msg": "fail",
"data": "Token 令牌不合法!"
}