ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[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" } ] } ~~~