[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
- 雇主--邀請注冊
- 雇主--分享民工
- 民工端
- 民工--登錄注冊
- 民工--個人資料
- 民工--我的紅包
- 民工--訂單相關
- 民工--我的訂單
- 民工--評價訂單
- 民工--消息相關
- 民工--積分相關
- 民工--認證相關
- 民工--工種相關
- 民工--會員相關
- 民工--分享相關
- 民工--服務區域
- 民工--服務技能
- 民工--邀請注冊