{ "easycom": { "autoscan": true, // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175 "custom": { "^u--(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue", "^up-(.*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue", "^u-([^-].*)": "@/uni_modules/uview-plus/components/u-$1/u-$1.vue" } }, "pages": [ { "path": "pages/workbenchManage/index", "style": { "navigationBarTitleText": "工作台" } }, { "path": "pages/orderTakingManage/index", "style": { "navigationBarTitleText": "接单大厅" } }, { "path": "pages/myOrdersManage/index", "style": { "navigationBarTitleText": "我的订单" } }, { "path": "pages/userManage/index", "style": { "navigationBarTitleText": "我的" } }, { "path": "pages/test/index", "style": { "navigationBarTitleText": "测试" } }, { "path": "pages/login/index", "style": { "navigationBarTitleText": "登录" } } ], "subPackages": [{ "root": "otherPages/orderTakingManage", // 接单大厅 "pages": [{ "path": "list/index" }, { "path": "detail/index", "style": { "navigationBarTitleText": "订单详情" } } ] }, { "root": "otherPages/myOrdersManage", // 我的订单 "pages": [{ "path": "list/index" }, { "path": "withdrawal/index" }, { "path": "detail/index" }, { "path": "bond/index" }, { "path": "bond/detail" } ] }, { "root": "otherPages/workbenchManage", // 工作台 "pages": [{ "path": "bindUser/index", "style": { "navigationBarTitleText": "绑定用户" } }, { "path": "myUser/index", "style": { "navigationBarTitleText": "我的用户" } }, { "path": "myLevel/index", "style": { "navigationBarTitleText": "我的等级" } }, //喂养员工作台 { "path": "feedingStaff/index", "style": { "navigationBarTitleText": "喂养员认证" } }, { "path": "examNotice/index", "style": { "navigationBarTitleText": "养宠经验考试须知" } }, { "path": "startExam/index", "style": { "navigationBarTitleText": "基础考试" } }, { "path": "trainingExamination/index", "style": { "navigationBarTitleText": "考试培训" } }, { "path": "shortAnswer/index", "style": { "navigationBarTitleText": "培训考试" } }, { "path": "queryResults/index", "style": { "navigationBarTitleText": "考试结果" } } ] }, { "root": "otherPages/userManage", // 我的 "pages": [{ "path": "list/index" }] } ], // 分包预载配置 "preloadRule": { // 当我们进入了pages/orderTakingManage/index页面以后就会预下载otherPages/orderTakingManage分包 "pages/orderTakingManage/index": { "network": "all", //在指定网络下预下载,可选值为:all(不限网络)、wifi(仅wifi下预下载) "packages": [ "otherPages/orderTakingManage" ] //进入页面后预下载分包 }, "pages/myOrdersManage/index": { "network": "all", "packages": [ "otherPages/myOrdersManage" ] }, "pages/workbenchManage/index": { "network": "all", "packages": [ "otherPages/workbenchManage" ] }, "pages/userManage/index": { "network": "all", "packages": [ "otherPages/userManage" ] } }, "tabBar": { "color": "#999", "selectedColor": "#333", "borderStyle": "white", "backgroundColor": "#ffffff", "list": [{ "pagePath": "pages/workbenchManage/index", "iconPath": "./static/images/tabBar/home.png", "selectedIconPath": "./static/images/tabBar/home_.png", "text": "工作台" }, { "pagePath": "pages/orderTakingManage/index", "iconPath": "./static/images/tabBar/home.png", "selectedIconPath": "./static/images/tabBar/home_.png", "text": "接单大厅" }, { "pagePath": "pages/myOrdersManage/index", "iconPath": "./static/images/tabBar/mine.png", "selectedIconPath": "./static/images/tabBar/mine_.png", "text": "我的订单" }, { "pagePath": "pages/userManage/index", "iconPath": "./static/images/tabBar/mine.png", "selectedIconPath": "./static/images/tabBar/mine_.png", "text": "我的" } ] }, "globalStyle": { "navigationBarTextStyle": "white", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#FFBF60" } }