{ "pages": [ //pages数组中第一项表示应用启动页 // #ifdef MP-WEIXIN { // 首页 "path": "pages/home/home", "style": { "navigationStyle": "custom", // 隐藏系统导航栏 "navigationBarTextStyle": "white" } }, // #endif // #ifdef H5 || APP-PLUS { // 首页 "path": "pages/home/home", "style": { // App生效: "app-plus": { "bounce": "none", // 回弹效果 "scrollIndicator": "none", // 隐藏滚动条 // 导航栏 "titleNView": { // 搜索框 "searchInput": { "align": "center", "backgroundColor": "#F7F7F7", "borderRadius": "20px", "placeholder": "搜索新鲜事", "disabled": true }, // 按钮 "buttons": [ // 左边 { "float": "left", "color": "#3c9cff", "colorPressed": "#3c9cff", "text": "\ue609", "fontSize": "24px", "fontSrc": "/static/font/iconfont.ttf" }, // 右边 { "float": "right", "color": "#3c9cff", "colorPressed": "#3c9cff", "text": "\ue708", "fontSize": "24px", "fontSrc": "/static/font/iconfont.ttf" } ] } } } }, // #endif { // 首页/详情 "path": "pages/home/detail", "style": { "navigationBarTitleText": "", "app-plus": { "titleNView": { "buttons": [{ "type": "share", "float": "right" }] } } } }, { // 新鲜事 "path": "pages/news/course", "style": { "navigationBarTitleText": "课程", "app-plus": { "bounce": "none" } } }, { // 新鲜事/话题/分类 "path": "pages/news/news-topic-cate", "style": { "navigationStyle": "custom", // 隐藏系统导航栏 "app-plus": { "bounce": "none" } } }, { // 新鲜事/话题/分类 "path": "pages/home/train", "style": { "navigationBarTitleText": "技能培训意向", "app-plus": { "bounce": "none" } } }, { // 新鲜事/话题/分类 "path": "pages/mine/history", "style": { "navigationBarTitleText": "历史记录", "app-plus": { "bounce": "none" } } }, { // 新鲜事/话题/分类 "path": "pages/mine/protocol", "style": { "navigationBarTitleText": "", "app-plus": { "bounce": "none" } } }, { // 新鲜事/话题/详情 "path": "pages/news/news-topic-detail", "style": { "navigationBarTitleText": "", "app-plus": { "scrollIndicator": "none", // 隐藏滚动条 "titleNView": { "type": "transparent", // 透明渐变 "buttons": [{ "type": "menu" }] } } } }, { // 我的 "path": "pages/mine/mine", "style": { "navigationBarTitleText": "我的", "navigationStyle": "custom", // 隐藏系统导航栏 // App生效: "app-plus": { "titleNView": "none" } } }, { // 我的/设置 "path": "pages/mine/set", "style": { "navigationBarTitleText": "设置" } }, { // 我的/设置/绑定邮箱 "path": "pages/mine/edit-info", "style": { "navigationBarTitleText": "" } } ], // 全局样式 "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "退役军人平台", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#FFFFFF", "app-plus": { "scrollIndicator": "none" } }, // 底部标签栏 "tabBar": { "color": "#666666", // tab 上的文字颜色 "selectedColor": "#006EEF", // tab 上的文字选中时的颜色 "backgroundColor": "#FFFFFF", // tab 的背景颜色 "borderStyle": "black", // tabbar 上边框的颜色 "fontSize": "16px", "iconWidth": "24px", "list": [{ "pagePath": "pages/home/home", "text": "首页", "iconPath": "/static/img/tabbar/home.png", "selectedIconPath": "/static/img/tabbar/home-ed.png" } // , // { // "pagePath": "pages/news/news", // "text": "课程", // "iconPath": "/static/img/tabbar/news.png", // "selectedIconPath": "/static/img/tabbar/news-ed.png" // }, // { // "pagePath": "pages/paper/paper", // "text": "技能", // "iconPath": "/static/img/tabbar/paper.png", // "selectedIconPath": "/static/img/tabbar/paper-ed.png" // } , { "pagePath": "pages/mine/mine", "text": "我的", "iconPath": "/static/img/tabbar/mine.png", "selectedIconPath": "/static/img/tabbar/mine-ed.png" } ] } // "condition": { //模式配置,仅开发期间生效 // "current": 0, //当前激活的模式(list 的索引项) // "list": [{ // "name": "", //模式名称 // "path": "pages/search/search", //启动页面,必选 // "query": "" //启动参数,在页面的onLoad函数里面得到 // }] // } }