{ // 组件自动引入规则 "easycom": { // 是否开启自动扫描 @/components/$1/$1.vue 组件 "autoscan": true, // 以正则方式自定义组件匹配规则 "custom": { // uni-ui 规则如下配置 "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue", // 以 Xtx 开头的组件,在 components 目录中查找 "^Xtx(.*)": "@/components/Xtx$1.vue" } }, "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { "navigationStyle": "custom", // 隐藏默认导航 "navigationBarTextStyle": "white", "navigationBarTitleText": "首页" } }, { "path": "pages/my/my", "style": { "navigationStyle": "custom", // 隐藏默认导航 "navigationBarTextStyle": "white", "navigationBarTitleText": "我的" } }, { "path": "pages/cart/cart", "style": { "navigationBarTitleText": "购物车" } }, { "path": "pages/category/category", "style": { "navigationBarTitleText": "分类" } }, { "path": "pages/login/login", "style": { "navigationBarTitleText": "登录" } }, { "path" : "pages/hot/hot", "style" : { "navigationBarTitleText" : "热门推荐" } }, { "path" : "pages/goods/goods", "style" : { "navigationBarTitleText" : "商品详情" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "", "navigationBarBackgroundColor": "#F8F8F8", "backgroundColor": "#F8F8F8" }, // 设置 TabBar "tabBar": { "color": "#333", "selectedColor": "#27ba9b", "backgroundColor": "#fff", "borderStyle": "white", "list": [ { "text": "首页", "pagePath": "pages/index/index", "iconPath": "static/tabs/home_default.png", "selectedIconPath": "static/tabs/home_selected.png" }, { "text": "分类", "pagePath": "pages/category/category", "iconPath": "static/tabs/category_default.png", "selectedIconPath": "static/tabs/category_selected.png" }, { "text": "购物车", "pagePath": "pages/cart/cart", "iconPath": "static/tabs/cart_default.png", "selectedIconPath": "static/tabs/cart_selected.png" }, { "text": "我的", "pagePath": "pages/my/my", "iconPath": "static/tabs/user_default.png", "selectedIconPath": "static/tabs/user_selected.png" } ] }, // 分包加载规则 "subPackages": [ { // 子包的根目录 "root": "pagesMember", "pages": [ { "path" : "settings/settings", "style" : { "navigationBarTitleText" : "设置" } }, { "path" : "profile/profile", "style" : { "navigationStyle": "custom", "navigationBarTextStyle": "white", "navigationBarTitleText" : "个人中心" } } ] } ], // 分包预下载规则 "preloadRule": { "pages/my/my": { "network": "all", "packages": ["pagesMember"] } } }