[TOC=2]
## 广告列表
~~~[api]
get:/advert/list
int:current_page=1#当前页
int:page_number=10#页码
<<<
success
{
"code": 0,
"data": {
"list": [
{
"id": 1,
"title": "123",//标题
"img": "http://www.baidu.com",//图片地址
"url": "http://www.baidu.com",//连接地址
"content": "hrh",//详细内容
"is_enable": false,//是否显示
"create_time": "2018-05-15 18:23:04"//创建时间
}
],
"current_page": 1,
"page_number": 10,
"total": 1
}
}
~~~
## 新增修改
~~~[api]
post:/advert/saveData
int:id=0#id
*sting:title=标题#标题
*string:img=图片地址#图片地址
*string:url=连接地址#连接地址
*boolean:is_enable=是否显示#是否显示
*string:content=详细内容#详细内容
<<<
success
//修改返回
{
"code": 0,
"data": {
"id": 1,
"title": "123",
"img": "http://www.baidu.com",
"url": "http://www.baidu.com",
"is_enable": false,
"content": "hrh"
}
}
<<<
success
//新增返回
{
"code": 0,
"data": {
"title": "123",
"img": "http://www.baidu.com",
"url": "http://www.baidu.com",
"is_enable": false,
"content": "hrh",
"id": 2
}
}
<<<
error
{
"code": -1,
"msg": "标题必须"
}
~~~
## 修改查询
~~~[api]
get:/advert/edit
*int:id=1#id
<<<
success
{
"code": 0,
"data": {
"id": 1,
"title": "123",//标题
"img": "http://www.baidu.com",//图片地址
"url": "http://www.baidu.com",//连接地址
"content": "hrh",//详细内容
"is_enable": false,//是否显示
"create_time": "2018-05-15 18:23:04"//创建时间
}
}
~~~
## 广告删除
~~~[api]
post:/advert/delete
*int:id=1#id
<<<
success
{
"code": 0,
"data": {
"id": 1
}
}
~~~
## 批量删除
~~~[api]
post:/advert/deleteBatch
*array:id_list=[1]#id 数组
<<<
success
{
"code": 0
}
~~~