[TOC=2]
## 枚舉變量
### 所在位置:( position )
| 可選值 | 說明 |
| --- | --- |
| top | 頂部 |
| center | 中間 |
| bottom | 底部 |
## 獲取banner
~~~[api]
get:/banner/list
string:page=index#所在頁面
string:position=top#所在位置
int:limit=10#需要條數
string:flavor=iKECIN# APP 包名
<<<
success
{
"code": 0,
"data": [
{
"id": 3,
"title": "c21",//標題
"img": "",//圖片地址
"url": "http://127.0.0.1:8080/admin.html#/Main/Banner",//鏈接地址
"is_enable": true,//是否顯示 true 顯示 false 不顯示 這里只會是 true
"page": "index",//所在頁面 默認首頁
"position": "center",//所在位置 見枚舉變量
"create_time": "2018-05-16 14:33:22"//創建時間
},
{
"id": 4,
"title": "cd",
"img": "",
"url": "http://127.0.0.1:8080/admin.html#/Main/Banner",
"is_enable": true,
"page": "index",
"position": "bottom",
"create_time": "2018-05-16 14:35:45"
}
]
}
~~~