{ "easycom": { "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue" }, //这个pages里只放这五个页面,新增页面时请对应的放到下面的分包里 "pages": [{ "path": "pages/index/guide", "style": { "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white", "navigationStyle": "custom" } }, { "path": "pages/index/index", "style": { "navigationBarTitleText": "首页", "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white" } }, { "path": "pages/index/customer", "style": { "navigationBarTitleText": "接待", "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white" } },{ "path": "pages/index/learning", "style": { "navigationBarTitleText": "学习", "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white" } },{ "path": "pages/index/personal", "style": { "navigationBarTitleText": "个人", "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white" } } ], //这下面是分包 "subPackages": [ { "root": "pages/login",//登录相关 "name": "login", "pages": [ { "path": "index", "style": { "navigationBarBackgroundColor": "#008EF2", "navigationBarTextStyle": "white" } } ] }, { "root": "pages/mine",//个人中心 "name": "mine", "pages": [ ] }, { "root": "pages/learning",//学习 "name": "learning", "pages": [ ] }, { "root": "pages/center",//中心逻辑的模块都放到这里 "name": "center", "pages": [ ] } ], "permission": { "scope.userLocation": { "desc": "你的位置信息将用于小程序位置接口的效果展示" } }, "networkTimeout": { "request": 10000, "downloadFile": 10000 }, "debug": false, "tabBar": { "color": "#8E8E8E", "selectedColor": "#1296db", "borderStyle": "white", "list": [{ "pagePath": "pages/index/index", "iconPath": "/static/images/tabBar/home.png", "selectedIconPath": "/static/images/tabBar/homeActive.png", "text": "楼盘" }, { "pagePath": "pages/index/customer", "iconPath": "/static/images/tabBar/customer.png", "selectedIconPath": "/static/images/tabBar/customerActive.png", "text": "接待" }, { "pagePath": "pages/index/learning", "iconPath": "/static/images/tabBar/voice.png", "selectedIconPath": "/static/images/tabBar/voiceActive.png", "text": "学习" }, { "pagePath": "pages/index/personal", "iconPath": "/static/images/tabBar/user.png", "selectedIconPath": "/static/images/tabBar/userActive.png", "text": "个人" } ] }, "sitemapLocation": "sitemap.json", "globalStyle": { "backgroundColor": "#F6F6F6", "backgroundTextStyle": "dark", "navigationBarBackgroundColor": "#fff", "navigationBarTitleText": "数智工牌", "navigationBarTextStyle": "black" } }