ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` { "pages": [ "pages/welcome/welcome", "pages/index/index", "pages/movies/movies", "pages/index/index-detail/index-detail", "pages/map/map", "pages/movies/movies-more/movies-more", "pages/web-page/web-page" ], "window": { "navigationBarBackgroundColor": "#B3D4DB", "navigationBarTextStyle": "#fff", "navigationBarTitleText": "小程序", "backgroundColor": "#eee", "backgroundTextStyle": "light", "enablePullDownRefresh": false //启用向下刷新 }, "tabBar": { //指底部的 导航配置属性 "color": "#666", //未选择时 底部导航文字的颜色 "selectedColor": "#3785F9", //选择时 底部导航文字的颜色 "position": "bottom", //tabBar的位置,仅支持 bottom / top "borderStyle": "black", // 底部导航边框的样色(注意 这里如果没有写入样式 会导致 导航框上边框会出现默认的浅灰色线条) "list": [{ //导航配置数组 "pagePath": "pages/index/index", //页面访问地址 "text": "阅读", //导航图标下方文字 "iconPath":"/images/tab/yuedu.png", //未选择时 图标路径 "selectedIconPath": "/images/tab/yuedu_hl.png" //选中时 图标路径 }, { "pagePath": "pages/map/map", "text": "地图", "iconPath": "/images/tab/map.png", "selectedIconPath": "/images/tab/map_hl.png" }, { "pagePath": "pages/movies/movies", "text": "电影", "iconPath": "/images/tab/dianying.png", "selectedIconPath": "/images/tab/dianying_hl.png" } ] } } ``` * tabBar 指底部的 导航配置属性 * color 未选择时 底部导航文字的颜色 * selectedColor 选择时 底部导航文字的颜色 * borderStyle 底部导航边框的样色(注意 这里如果没有写入样式 会导致 导航框上边框会出现默认的浅灰色线条) * position/bottom tabBar的位置,仅支持 bottom / top * list 导航配置数组 * selectedIconPath 选中时 图标路径 * iconPath 未选择时 图标路径 * pagePath 页面访问地址 * text 导航图标下方文字