🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC=2] ## 枚举变量 ### banner的位置(position): | 可选值 | 说明 | | --- | --- | | top | 顶部 | | center | 中间 | ## banner列表 ~~~[api] get:/banner/list int:current_page=1#当前页 int:page_number=10#页码 <<< success { "code": 0, "data": { "list": [ { "id": 1, "title": "标题",//标题 "img": "http://www.baidu.com",//图片地址 "url": "http://www.baidu.com",//链接地址 "is_show": true,//是否显示 "position": "top",//显示位置 "create_time": "2018-03-12 17:14:47"//添加时间 } ], "count": 1,/中数 "current_page": 1,//当前页 "page_number": 10//页码 } } ~~~ ## 新增 ~~~[api] post:/banner/create *string:title=标题#标题 *string:img=http://www.baidu.com#图片地址 *string:url=http://www.baidu.com#链接地址 *boolean:is_show=true#是否显示 *string:position=top#显示位置 <<< success { "code": 0, "data": { "title": "123", "img": "http://www.baidu.com", "url": "http://www.baidu.com", "is_show": true, "position": "top", "id": "1" } } <<< error { "code": -1, "msg": "图片必须" } ~~~ ## 修改查询 ~~~[api] get:/banner/edit *int:id=0#id <<< success { "code": 0, "data": { "id": 2, "title": "123",//标题 "img": "http://www.baidu.com",//图片地址 "url": "http://www.baidu.com",//链接地址 "is_show": true,//是否显示 "position": "top",//显示位置 见枚举变量 "create_time": "2018-03-12 17:44:33"//添加时间 } } <<< error { "code": 0 } ~~~ ## 修改 ~~~[api] post:/banner/update *int:id=1#id *string:title=标题#标题 *string:img=http://www.baidu.com#图片地址 *string:url=http://www.baidu.com#链接地址 *boolean:is_show=true#是否显示 *string:position=top#显示位置 <<< success { "code": 0, "data": { "id": 1, "title": "aaaaa", "img": "http://www.baidu.com", "url": "http://www.baidu.com", "is_show": true, "position": "top" } } <<< error { "code": -1, "msg": "图片必须" } ~~~ ## 删除 ~~~[api] post:/banner/delete *int:id=1#列表的id <<< success { "code": 0, "data": { "id": 1//被删除的id } } ~~~