123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "会员/套餐",
- "enablePullDownRefresh": true,
- "navigationBarBackgroundColor": "#58c4c4"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- }, {
- "path": "pages/login/phoneLogin",
- "style": {
- "navigationBarTitleText": "手机号登录"
- }
- },
- {
- "path": "pages/about",
- "style": {
- "navigationBarTitleText": "关于我们"
- }
- },
- {
- "path": "pages/xieyi/index",
- "style": {
- "navigationBarTitleText": "用户协议和隐私政策"
- }
- },
- {
- "path": "pages/h5Page/index",
- "style": {
- "navigationBarTitleText": "诊断报告"
- }
- }
- ,{
- "path" : "pages/bundelDetail/index",
- "style" :
- {
- "navigationBarTitleText": "套餐详细",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/report/report",
- "style" :
- {
- "navigationBarTitleText": "诊断报告",
- "enablePullDownRefresh": true,
- "navigationBarBackgroundColor": "#58c4c4"
- }
-
- }
- ,{
- "path" : "pages/checkReport/index",
- "style" :
- {
- "navigationBarTitleText": "诊断报告",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/checkReport/detail",
- "style" :
- {
- "navigationBarTitleText": "诊断报告",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#7A7E83",
- "selectedColor": "#191919",
- "backgroundColor": "#ffffff",
- "fontSize": "14px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tab/tab_home_normal.png",
- "selectedIconPath": "static/tab/tab_home_pressed.png",
- "text": "会员/套餐"
- },
- {
- "pagePath": "pages/report/report",
- "iconPath": "static/tab/tab_personal_normal.png",
- "selectedIconPath": "static/tab/tab_personal_pressed.png",
- "text": "诊断报告"
- }
- ]
- }
- }
|