| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- {
- // 如果您是通过uni_modules形式引入uView,可以忽略此配置
- "easycom": {
- "^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/my/index",
- "style": {
- "navigationStyle": "custom"
- // "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle": "custom"
- // "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/login/register",
- "style": {
- "navigationStyle": "custom"
- // "navigationBarTitleText": "注册"
- }
- },
- {
- "path": "pages/login/forget",
- "style": {
- "navigationStyle": "custom"
- // "navigationBarTitleText": "忘记密码"
- }
- },
- {
- "path": "pages/growthCenter/index",
- "style": {
- "navigationBarTitleText": "成长中心"
- }
- },
- {
- "path": "pages/growthCenter/wantUpgrade",
- "style": {
- "navigationBarTitleText": "我要升级"
- }
- },
- {
- "path": "pages/rewardBalance/index",
- "style": {
- "navigationBarTitleText": "悬赏余额"
- }
- },
- {
- "path": "pages/rewardBalance/recharge",
- "style": {
- "navigationBarTitleText": "充值"
- }
- },
- {
- "path": "pages/rewardBalance/withdraw",
- "style": {
- "navigationBarTitleText": "提现"
- }
- },
- {
- "path": "pages/taskAmount/withdraw",
- "style": {
- "navigationBarTitleText": "任务提现"
- }
- },
- {
- "path": "pages/taskAmount/withdraw",
- "style": {
- "navigationBarTitleText": "提现"
- }
- },
- {
- "path": "pages/personalProfile/index",
- "style": {
- "navigationBarTitleText": "个人资料"
- }
- },
- {
- "path": "pages/personalProfile/realAuth",
- "style": {
- "navigationBarTitleText": "实名认证"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "众筹帮",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#A0A0A0",
- "selectedColor": "#FFA74F",
- "backgroundColor": "#fff",
- "borderStyle": "black",
- "height": "60px",
- "list": [
- {
- "text": "首页",
- "pagePath": "pages/index/index",
- "iconPath": "/static/tabbar/home.png",
- "selectedIconPath": "/static/tabbar/homeCheck.png"
- },
- {
- "text": "我的",
- "pagePath": "pages/my/index",
- "iconPath": "/static/tabbar/my.png",
- "selectedIconPath": "/static/tabbar/myCheck.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|