多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC=2] ## 申请查看 ~~~[api] get:/user <<< success // 显示有申请的内容,未处理的 ~~~ ## 用户列表 ~~~[api] get:/user/list <<< success // 显示已有用户列表 ~~~ ## 用户分页 ~~~[api] get:/user/pag int:current_page=1#当前页 int:page_number=10#页码 <<< success // 用户列表的分页数据 ~~~ ## 冻结启用 ~~~[api] post:/user/audit *array:id_list=[1,2]#id 数组 *int:status=1#设置状态 1 正常 2 冻结 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~ ## 删除用户 ~~~[api] post:/user/delete *array:id_list=[1,2]#id 数组 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~ ## 添加用户 ~~~[api] get:/user/create <<< success // 渲染添加用户页 ~~~ ## 添加功能 ~~~[api] post:/user/save *string:username=123#用户名 *string:password=123456#密码 array:power=[]#允许申请的号段 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~ ## 同意申请 ~~~[api] post:/user/agree *array:id_list=[1,2]#id 数组 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~ ## 拒绝申请 ~~~[api] post:/user/refuse *array:id_list=[1,2]#id 数组 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~ ## 更新用户 ~~~[api] get:/user/read *int:user_id=0#用户 id <<< success // 渲染更新页面 ~~~ ## 更改授权 ~~~[api] post:/user/update *int:user_id=1#用户 id *array:power=[]#号段数组 <<< success { "code": 0 } <<< error { "code": -1, "msg": "参数错误" } ~~~