ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC=2] ## 枚举变量 ### 所在位置:( position ) | 可选值 | 说明 | | --- | --- | | top | 顶部 | | center | 中间 | | bottom | 底部 | ## baner列表 ~~~[api] get:/banner/list <<< success { "code": 0, "data": { "list": [ { "id": 1, "title": "111",//标题 "img": "https://www.baidu.com",//图片地址 "url": "https://www.baidu.com",//连接地址 "is_enable": true,//是否显示 true 显示 false 不显示 "page": "index",//所在页面 "position": "top",//所在位置 "create_time": "2018-05-16 09:41:47"//创建时间 } ] } } ~~~ ## 修改查询 ~~~[api] get:/banner/edit *int:id=0#banner id <<< success // 正确id返回 { "code": 0, "data": { "id": 1, "title": "111",//标题 "img": "https://www.baidu.com",//图片地址 "url": "https://www.baidu.com",//链接地址 "is_enable": true,//是否显示 true 显示 false 不显示 "page": "index",//所在页面 "position": "top",//所在位置 见枚举变量 "create_time": "2018-05-16 09:41:47"//创建时间 } } <<< success // id 不存在返回 { "code": 0 } ~~~ ## 新增、修改 ~~~[api] post:/banner/saveData int:id=0#banner id *string:title=标题#标题 *string:img=http://www.baidu.com#图片地址 *string:url=http://www.baidu.com#连接地址 *boolean:is_enable=false#是否显示 *string:position=top#所在位置 *string:page=index#所在页面 <<< success //新增返回 { "code": 0, "data": { "title": "123", "img": "https://www.baidu.com", "url": "https://www.baidu.com", "is_enable": true, "position": "top", "page": "index", "id": 1 } } <<< success //修改返回 { "code": 0, "data": { "id": 1, "title": "111", "img": "https://www.baidu.com", "url": "https://www.baidu.com", "is_enable": true, "position": "top", "page": "index" } } <<< error { "code": -1, "msg":"参数错误" } ~~~ ## banner删除 ~~~[api] post:/banner/delete *int:id=0#banner id <<< success { "code":0, "data":[ "id":0 ] } ~~~ ## 批量删除 ~~~[api] post:/banner/deleteBatch *array:id_list=[1]#id 数组 <<< success { "code": 0 } ~~~