pages.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationStyle":"custom",// 隐藏系统导航栏
  10. "navigationBarTitleText": "城市智慧停车"
  11. }
  12. },
  13. {
  14. "path": "pages/login/login",
  15. "style": {
  16. "navigationStyle":"custom",// 隐藏系统导航栏
  17. "navigationBarTitleText": "城市智慧停车"
  18. }
  19. },
  20. {
  21. "path": "pages/modifypwd/modifypwd",
  22. "style": {
  23. // "navigationStyle":"custom",// 隐藏系统导航栏
  24. "navigationBarTitleText": "密码修改"
  25. }
  26. },
  27. {
  28. "path": "pages/parking/parking",
  29. "style": {
  30. // "navigationStyle":"custom",// 隐藏系统导航栏
  31. "navigationBarTitleText": "车辆入场"
  32. }
  33. },
  34. {
  35. "path": "pages/getout/getout",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "车辆出场"
  39. }
  40. },
  41. {
  42. "path": "pages/getout/getoutpage/getoutpage",
  43. "style": {
  44. // "navigationStyle":"custom",// 隐藏系统导航栏
  45. "navigationBarTitleText": "车辆出场"
  46. }
  47. },
  48. {
  49. "path": "pages/getcarno/getcarno",
  50. "style": {
  51. // "navigationStyle":"custom",// 隐藏系统导航栏
  52. "navigationBarTitleText": "拍照取证"
  53. }
  54. },
  55. {
  56. "path": "pages/attence/attence",
  57. "style": {
  58. "navigationStyle":"custom",// 隐藏系统导航栏
  59. "navigationBarTitleText": "考勤"
  60. }
  61. },
  62. {
  63. "path": "pages/setting/setting",
  64. "style": {
  65. "navigationStyle":"custom",// 隐藏系统导航栏
  66. "navigationBarTitleText": "设置"
  67. }
  68. }
  69. ],
  70. "globalStyle": {
  71. "navigationBarTextStyle": "black",
  72. "navigationBarTitleText": "uView",
  73. "navigationBarBackgroundColor": "#F8F8F8",
  74. "backgroundColor": "#F8F8F8"
  75. }
  76. // "tabBar": {
  77. // "color": "#909399",
  78. // "selectedColor": "#303133",
  79. // "borderStyle": "black",
  80. // "backgroundColor": "#ffffff",
  81. // "list": [{
  82. // "pagePath": "pages/index/index",
  83. // "iconPath": "static/index.png",
  84. // "selectedIconPath": "static/index-selected.png",
  85. // "text": "首页"
  86. // }, {
  87. // "pagePath": "pages/center/index",
  88. // "iconPath": "static/center.png",
  89. // "selectedIconPath": "static/center-selected.png",
  90. // "text": "我"
  91. // }]
  92. // }
  93. }