[TOC=2]
## baner列表
~~~[api]
get:/banner/list
int:current_page=1#当前页
int:page_number=10#页码
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 1,//banner id
"title": "99123",//标题
"img": "http://www.baidu.com",//图片地址
"url": "http://www.baidu.com",//连接地址
"is_enable": false,//是否显示 false 不显示 true 显示
"position": 1,//所在位置 待定
"create_time": "2018-03-20 17:02:45"//创建时间
}
],
"current_page": 1,//当前页
"page_number": 10,//页码
"total": 9//总条数
}
}
~~~
## 修改查询
~~~[api]
get:/banner/edit
*int:id=0#banner id
<<<
success
// 正确id返回
{
"code": 0,
"data": {
"id": 1, // banner id
"title": "99123",//标题
"img": "http://www.baidu.com",//图片地址
"url": "http://www.baidu",//连接地址
"is_enable": false,//是否显示 false 不显示 true 显示
"position": 1,//所在位置 待定
"create_time": "2018-03-20 17:02:45"//创建时间
}
}
<<<
success
// id 不存在返回
{
"code": 0
}
~~~
## banner 搜索
~~~[api]
get:/banner/search
*string:search=""#标题
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 1,//banner id
"title": "99123",//标题
"img": "http://www.baidu.com",//图片地址
"url": "http://www.baidu.com",//连接地址
"is_enable": false,//是否显示 false 不显示 true 显示
"position": 1,//所在位置 待定
"create_time": "2018-03-20 17:02:45"//创建时间
}
]
}
}
~~~
## 新增、修改
~~~[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#是否显示
*int:position=1#所在位置
<<<
success
{
"code": 0,
"data": {
"id": 1,
"title": "33",
"img": "http://www.baidu.com",
"url": "http://www.baidu",
"is_enable": true,
"position": 1
}
}
<<<
error
{
"code": -1,
"msg":"参数错误"
}
~~~
## banner删除
~~~[api]
post:/banner/delete
*int:id=0#banner id
<<<
success
{
"code":0,
"data":[
"id":0
]
}
~~~