{ "easycom": { "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" }, "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/cleared/chooseNetwork", "style": { "navigationBarTitleText": "待清运网点" } }, { "path": "pages/index/index", // 待清运 "style": { "navigationBarTitleText": "待清运", "enablePullDownRefresh": false, "navigationStyle": "custom" } }, { "path": "pages/index/map", "style": { "navigationBarTitleText": "配送地图" } }, { "path": "pages/login/login", "style": { "navigationBarTitleText": "登录" } }, { "path": "pages/login/pwLogin", "style": { "navigationBarTitleText": "密码登录" } }, { "path": "pages/cleared/index", // 已清运 "style": { "navigationBarTitleText": "已清运", "enablePullDownRefresh": false } }, { "path": "pages/cleared/details", // 已清运详情 "style": { "navigationBarTitleText": "详情" } }, { "path": "pages/userCenter/index", "style": { "navigationBarTitleText": "个人中心", "navigationBarBackgroundColor": "#2ab4e5", "navigationBarTextStyle": "white" } }, { "path": "pages/agreement/agreement", "style": { "navigationBarTitleText": "注意事项及服务协议" } }, { "path": "pages/userCenter/changePwd", // 我的>修改密码 "style": { "navigationBarTitleText": "修改密码" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#FFFFFF", "backgroundColor": "#f2f2f2", "app-plus": { // 将回弹属性关掉 "bounce": "none", "scrollIndicator": "none" } }, "tabBar": { "color": "#7A7E83", "selectedColor": "#2ab4e5", "backgroundColor": "#ffffff", "fontSize": "14px", "list": [ { "pagePath": "pages/index/index", "iconPath": "static/tabbar/record.png", "selectedIconPath": "static/tabbar/record-active.png", "text": "待清运" }, { "pagePath": "pages/cleared/index", "iconPath": "static/tabbar/record.png", "selectedIconPath": "static/tabbar/record-active.png", "text": "已清运" }, { "pagePath": "pages/userCenter/index", "iconPath": "static/tabbar/user.png", "selectedIconPath": "static/tabbar/user-active.png", "text": "我的" }] } }