{ "easycom": { "^uni-(.*)": "@/components/uni-$1/uni-$1.vue", // 匹配components目录内的vue文件 "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue" }, "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages { "path": "pages/login/login", //登录页 "style": { "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/login/forgotPassword", //登录页 "style": { "navigationBarTitleText": "忘记密码", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/login/smsCode", //登录页 "style": { "navigationBarTitleText": "短信验证码", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/index/index", "style": { "enablePullDownRefresh": true, //是否开启下拉刷新功能 "navigationBarTitleText": "首页", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/message/message", "style": { "navigationBarTitleText": "消息" } }, { "path": "pages/orders/orders", "style": { "navigationBarTitleText": "订单", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/my/my", "style": { "navigationBarTitleText": "我的" } }, { "path": "pages/quote/quoteInfo", "style": { "navigationBarTitleText": "完善报价信息" } }, { "path": "pages/quote/selectInsuranceCompany", "style": { "navigationBarTitleText": "投保车型" } }, { "path": "pages/quote/premiumCalc", "style": { "navigationBarTitleText": "保费计算" } }, { "path": "pages/quote/chooseOption", "style": { "navigationBarTitleText": "选择方案" } }, { "path": "pages/quote/checkOption", "style": { "navigationBarTitleText": "查看方案" } }, { "path": "pages/quote/ePolicy", "style": { "navigationBarTitleText": "电子保单", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/quote/quoteDetail", "style": { "navigationBarTitleText": "订单详情页", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/quote/quotation", "style": { "navigationBarTitleText": "报价单", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/quote/paymentCode", "style": { "navigationBarTitleText": "付款码", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } }, { "path": "pages/quote/queryVehicleModel", "style": { "navigationBarTitleText": "车型列表", "app-plus": { "scrollIndicator": "none", //隐藏滚动条 "bounce": "none", //关闭反弹效果 "titleNView": false } } } ], "globalStyle": { "navigationBarTextStyle": "black", "navigationBarTitleText": "晋掌柜", "navigationBarBackgroundColor": "#fff", // "navigationStyle": "custom", "backgroundColor": "#FFFFFF", "rpxCalcMaxDeviceWidth": 0, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960 "rpxCalcBaseDeviceWidth": 375, "rpxCalcIncludeWidth": 750, "pageOrientation": "portrait" }, "tabBar": { "color": "#666", "selectedColor": "#333", "borderStyle": "white", "backgroundColor": "#fdfcf4", "list": [{ "pagePath": "pages/index/index", "iconPath": "static/icon/tab/icon_index.png", "selectedIconPath": "/static/icon/tab/icon_index_c.png", "text": "首页" }, { "pagePath": "pages/orders/orders", "iconPath": "static/icon/tab/icon_orders.png", "selectedIconPath": "/static/icon/tab/icon_orders_c.png", "text": "订单" }, { "pagePath": "pages/message/message", "iconPath": "/static/icon/tab/icon_message.png", "selectedIconPath": "/static/icon/tab/icon_message_c.png", "text": "消息" }, { "pagePath": "pages/my/my", "iconPath": "static/icon/tab/icon_my.png", "selectedIconPath": "/static/icon/tab/icon_my_c.png", "text": "我的" } ] } }