pages.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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/getin/getin",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "车辆入场"
  39. }
  40. },
  41. {
  42. "path": "pages/getout/getout",
  43. "style": {
  44. "navigationStyle":"custom",// 隐藏系统导航栏
  45. "navigationBarTitleText": "车辆出场"
  46. }
  47. },
  48. {
  49. "path": "pages/getout/getoutpage/getoutpage",
  50. "style": {
  51. // "navigationStyle":"custom",// 隐藏系统导航栏
  52. "navigationBarTitleText": "车辆出场"
  53. }
  54. },
  55. {
  56. "path": "pages/getcarno/getcarno",
  57. "style": {
  58. // "navigationStyle":"custom",// 隐藏系统导航栏
  59. "navigationBarTitleText": "拍照取证"
  60. }
  61. },
  62. {
  63. "path": "pages/attence/attence",
  64. "style": {
  65. "navigationStyle":"custom",// 隐藏系统导航栏
  66. "navigationBarTitleText": "考勤"
  67. }
  68. },
  69. {
  70. "path": "pages/setting/setting",
  71. "style": {
  72. "navigationStyle":"custom",// 隐藏系统导航栏
  73. "navigationBarTitleText": "设置"
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "uView",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. }
  83. // "tabBar": {
  84. // "color": "#909399",
  85. // "selectedColor": "#303133",
  86. // "borderStyle": "black",
  87. // "backgroundColor": "#ffffff",
  88. // "list": [{
  89. // "pagePath": "pages/index/index",
  90. // "iconPath": "static/index.png",
  91. // "selectedIconPath": "static/index-selected.png",
  92. // "text": "首页"
  93. // }, {
  94. // "pagePath": "pages/center/index",
  95. // "iconPath": "static/center.png",
  96. // "selectedIconPath": "static/center-selected.png",
  97. // "text": "我"
  98. // }]
  99. // }
  100. }