🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC=2] ## 枚举变量 ## 获取分类列表 ~~~[api] get:/jobCategory2/list int:parent_id=null#上级分类id int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "list": [ { "id": 3, "name": "茄椒类", "icon": "", "parent_id": null } ], "current_page": 1, "page_number": 10, "total": 1 } } ~~~ ## 获取所有分类 ~~~[api] get:/jobCategory2/getAllList int:parent_id=null#上级分类id <<< success { "code": 0, "data": { "list": [ { "id": 7, "name": "番茄", "icon": "", "parent_id": null } ] } } ~~~ ## 保存修改 >[danger] 传 id 表示修改,不传 id 表示新增。 不传 parent_id 默认添加第一类。 prarent_id 填 null 也是添加第一类。 ~~~[api] post:/jobCategory2/saveData *string:name=分类名#分类名 int:parent_id=null#上级分类id string:icon=http://www.baidu.com#图标 <<< success { "code": 0, "data": { "name": "番茄", "icon": "", "parent_id": null, "id": 7 } } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 删除分类 >[danger] 删除上级,自动删除下级所有的蔬菜 ~~~[api] post:/jobCategory2/delete *int:id=0#分类id <<< success { "code": 0, "data": { "id": 7 } } ~~~