{ "easycom": { "^x-(.*)": "@/components/x-$1.vue", // 匹配components目录内的vue文件 "^g-(.*)": "@/components/global/g-$1.vue", "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue" }, "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/index/index", "style": { // "navigationStyle": "custom", "navigationBarTitleText": "问真排盘" } }, { "path": "pages/index/horoscope", "style": { "navigationBarTitleText": "问真八字" } }, { "path": "pages/record/index", "style": { "navigationStyle": "custom" } }, { "path": "pages/school/index", "style": { "navigationStyle": "custom" } }, { "path": "pages/school/reader", "style": { "navigationStyle": "custom" } }, { "path": "pages/school/bookParticulars", "style": { // "navigationStyle": "custom", "navigationBarTitleText": "" } }, { "path": "pages/setting/index", "style": { "navigationStyle": "custom" } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "uni-app", "navigationBarBackgroundColor": "#ffffff", "backgroundColor": "#F8F8F8" }, // 设置 TabBar "tabBar": { "color": "#707070", "selectedColor": "#b2955d", "backgroundColor": "#fff", "borderStyle": "white", "list": [{ "text": "排盘", "pagePath": "pages/index/index", "iconPath": "static/tabs/array_default.png", "selectedIconPath": "static/tabs/array_selected.png" }, { "text": "记录", "pagePath": "pages/record/index", "iconPath": "static/tabs/record_default.png", "selectedIconPath": "static/tabs/record_selected.png" }, { "text": "学堂", "pagePath": "pages/school/index", "iconPath": "static/tabs/school_default.png", "selectedIconPath": "static/tabs/school_selected.png" }, { "text": "设置", "pagePath": "pages/setting/index", "iconPath": "static/tabs/option_default.png", "selectedIconPath": "static/tabs/option_selected.png" } ] }, "uniIdRouter": {} }