| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- {
- "easycom": {
- // 关键步骤3:配置easycom规则
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- {
- "path": "pages/index",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/home/index",
- "style": {
- "navigationBarTitleText": "车主"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/login/xieyi",
- "style": {
- "navigationBarTitleText": "协议"
- }
- },
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/me/userInfo",
- "style": {
- "navigationBarTitleText": "个人资料"
- }
- },
- {
- "path": "pages/me/storeInfo",
- "style": {
- "navigationBarTitleText": "门店信息"
- }
- },
- {
- "path": "pages/me/setting",
- "style": {
- "navigationBarTitleText": "设置"
- }
- },
- {
- "path": "pages/home/register/index",
- "style": {
- "navigationBarTitleText": "注册信息"
- }
- },
- {
- "path": "pages/home/insurance/index",
- "style": {
- "navigationBarTitleText": "注册列表"
- }
- },
- {
- "path": "pages/home/insurance/details",
- "style": {
- "navigationBarTitleText": "轮胎保注册信息",
- "app-plus": {
- "titleNView": false //禁用原生导航栏
- }
- }
- },
- {
- "path": "pages/home/insurance/rules",
- "style": {
- "navigationBarTitleText": "库比森报轮胎保服务规则"
- }
- },
- {
- "path": "pages/home/insurance/itemDetails",
- "style": {
- "navigationBarTitleText": "轮胎保理赔记录",
- "enablePullDownRefresh": true
- }
- },
- {
- "path": "pages/home/claim/index",
- "style": {
- "navigationBarTitleText": "保单进度"
- }
- },
- {
- "path": "pages/home/claim/details",
- "style": {
- "navigationBarTitleText": "轮胎保单内容"
- }
- },
- {
- "path": "pages/home/story/detail",
- "style": {
- "navigationBarTitleText": "用户故事详情"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarBackgroundColor": "#03803B",
- "app-plus": {
- "bounce": "none",
- "scrollIndicator": "none",
- "titleNView": {
- "backgroundImage": "linear-gradient(to bottom, #03803B, #03803B)"
- }
- }
- },
- "tabBar": {
- "color": "#727272",
- "selectedColor": "#03803B",
- "borderStyle": "white",
- "backgroundColor": "#FFFFFF",
- "list": [{
- "pagePath": "pages/home/index",
- "iconPath": "static/images/tabBar/home.png",
- "selectedIconPath": "static/images/tabBar/home_selected.png",
- "text": "首页"
- },{
- "pagePath": "pages/me/index",
- "iconPath": "static/images/tabBar/my.png",
- "selectedIconPath": "static/images/tabBar/my_selected.png",
- "text": "我的"
- }]
- }
- }
|