12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "easycom": {
- "^u-(.*)": "@/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/login/login",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "城市智慧停车"
- }
- },
- {
- "path": "pages/modifypwd/modifypwd",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "密码修改"
- }
- },
- {
- "path": "pages/parking/parking",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "车辆入场"
- }
- },
- {
- "path": "pages/getout/getout",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "车辆出场"
- }
- },
- {
- "path": "pages/getout/getoutpage/getoutpage",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "车辆出场"
- }
- },
- {
- "path": "pages/getcarno/getcarno",
- "style": {
- // "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "拍照取证"
- }
- },
- {
- "path": "pages/attence/attence",
- "style": {
- "navigationStyle":"custom",// 隐藏系统导航栏
- "navigationBarTitleText": "考勤"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uView",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- // "tabBar": {
- // "color": "#909399",
- // "selectedColor": "#303133",
- // "borderStyle": "black",
- // "backgroundColor": "#ffffff",
- // "list": [{
- // "pagePath": "pages/index/index",
- // "iconPath": "static/index.png",
- // "selectedIconPath": "static/index-selected.png",
- // "text": "首页"
- // }, {
- // "pagePath": "pages/center/index",
- // "iconPath": "static/center.png",
- // "selectedIconPath": "static/center-selected.png",
- // "text": "我"
- // }]
- // }
- }
|