| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "easycom": {
- // 注意一定要放在custom里,否则无效,https://ask.dcloud.net.cn/question/131175
- "custom": {
- "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationBarBackgroundColor": "#108cff",
- "navigationStyle": "custom"
-
- }
- },
- {
- "path": "pages/privacy/index",
- "style": {
- "navigationBarTitleText": "隐私政策",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/repair/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/repair/components/apply/index",
- "style": {
- "navigationBarTitleText": "手表维保"
- }
- },
- {
- "path": "pages/repair/components/progress/index",
- "style": {
- "navigationBarTitleText": "进度查询"
- }
- },
- {
- "path": "pages/repair/components/price/index",
- "style": {
- "navigationBarTitleText": "维修报价"
- }
- },
- {
- "path": "pages/repair/components/orderDetail/index",
- "style": {
- "navigationBarTitleText": "订单详情"
- }
- },
- {
- "path": "pages/repair/components/orderList/index",
- "style": {
- "navigationBarTitleText": "订单列表"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#666666",
- "selectedColor": "#108CFF",
- "backgroundColor": "#ffffff",
- "iconWidth": "28px",
- "height": "70px",
- "fontSize": "12px",
- "list": [
- {
- "text": "手表服务",
- "pagePath": "pages/repair/index",
- "iconPath": "static/tabs/watch.png",
- "selectedIconPath": "static/tabs/watch-active.png",
- "visible": true
- }
- ]
- }
- }
|