[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
}
}
~~~
- 使用须知
- 共用数据
- 数据库
- 管理员
- 管理--登录注册
- 管理--个人资料
- 管理--工种相关
- 管理--工作相关
- 管理--蔬菜分类
- 管理--订单相关
- 管理--用户相关
- 管理--消息相关
- 管理--banner
- 管理--认证相关
- 管理--蔬菜改版
- 雇主端
- 雇主--登录注册
- 雇主--个人资料
- 雇主--设备相关
- 雇主--控制设备
- 雇主--用工地址
- 雇主--我的收藏
- 雇主--工种相关
- 雇主--我的订单
- 雇主--我的红包
- 雇主--评价订单
- 雇主--消息相关
- 雇主--积分相关
- 雇主--民工列表
- 雇主--banner
- 雇主--邀请注册
- 雇主--分享民工
- 民工端
- 民工--登录注册
- 民工--个人资料
- 民工--我的红包
- 民工--订单相关
- 民工--我的订单
- 民工--评价订单
- 民工--消息相关
- 民工--积分相关
- 民工--认证相关
- 民工--工种相关
- 民工--会员相关
- 民工--分享相关
- 民工--服务区域
- 民工--服务技能
- 民工--邀请注册