pages.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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/login/login",
  8. "style": {
  9. "navigationStyle":"custom",// 隐藏系统导航栏
  10. "navigationBarTitleText": "城市智慧停车"
  11. }
  12. },
  13. {
  14. "path": "pages/index/index",
  15. "style": {
  16. "navigationStyle":"custom",// 隐藏系统导航栏
  17. "navigationBarTitleText": "城市智慧停车"
  18. }
  19. },
  20. {
  21. "path": "pages/roadlist/roadlist",
  22. "style": {
  23. "navigationStyle":"custom",// 隐藏系统导航栏
  24. "navigationBarTitleText": "停车场列表"
  25. }
  26. },
  27. {
  28. "path": "pages/modifypwd/modifypwd",
  29. "style": {
  30. "navigationStyle":"custom",// 隐藏系统导航栏
  31. "navigationBarTitleText": "密码修改"
  32. }
  33. },
  34. {
  35. "path": "pages/parking/parking",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTitleText": "车辆入场"
  39. }
  40. },
  41. {
  42. "path": "pages/getin/getin",
  43. "style": {
  44. "navigationStyle":"custom",// 隐藏系统导航栏
  45. "navigationBarTitleText": "车辆入场"
  46. }
  47. },
  48. {
  49. "path": "pages/getout/getout",
  50. "style": {
  51. "navigationStyle":"custom",// 隐藏系统导航栏
  52. "navigationBarTitleText": "车辆出场"
  53. }
  54. },
  55. {
  56. "path": "pages/getout/getoutpage/getoutpage",
  57. "style": {
  58. // "navigationStyle":"custom",// 隐藏系统导航栏
  59. "navigationBarTitleText": "车辆出场"
  60. }
  61. },
  62. {
  63. "path": "pages/getcarno/getcarno",
  64. "style": {
  65. // "navigationStyle":"custom",// 隐藏系统导航栏
  66. "navigationBarTitleText": "拍照取证"
  67. }
  68. },
  69. {
  70. "path": "pages/ownersquery/ownersquery",
  71. "style": {
  72. "navigationStyle":"custom",// 隐藏系统导航栏
  73. "navigationBarTitleText": "车主查询"
  74. }
  75. },
  76. {
  77. "path": "pages/ownersquery/ownersinfo/ownersinfo",
  78. "style": {
  79. "navigationStyle":"custom",// 隐藏系统导航栏
  80. "navigationBarTitleText": "车主信息"
  81. }
  82. },
  83. {
  84. "path": "pages/attence/attence",
  85. "style": {
  86. "navigationStyle":"custom",// 隐藏系统导航栏
  87. "navigationBarTitleText": "考勤"
  88. }
  89. },
  90. {
  91. "path": "pages/setting/setting",
  92. "style": {
  93. "navigationStyle":"custom",// 隐藏系统导航栏
  94. "navigationBarTitleText": "设置"
  95. }
  96. },
  97. {
  98. "path": "pages/performance/performance",
  99. "style": {
  100. "navigationStyle":"custom",// 隐藏系统导航栏
  101. "navigationBarTitleText": "我的业绩"
  102. }
  103. },
  104. {
  105. "path": "pages/owelist/owelist",
  106. "style": {
  107. "navigationStyle":"custom",// 隐藏系统导航栏
  108. "navigationBarTitleText": "历史欠费"
  109. }
  110. },
  111. {
  112. "path": "pages/receipts/receiptsIn",
  113. "style": {
  114. "navigationStyle":"custom",// 隐藏系统导航栏
  115. "navigationBarTitleText": "入场小票"
  116. }
  117. },
  118. {
  119. "path": "pages/receipts/receiptsOut",
  120. "style": {
  121. "navigationStyle":"custom",// 隐藏系统导航栏
  122. "navigationBarTitleText": "出场小票"
  123. }
  124. }
  125. ],
  126. "globalStyle": {
  127. "navigationBarTextStyle": "black",
  128. "navigationBarTitleText": "uView",
  129. "navigationBarBackgroundColor": "#F8F8F8",
  130. "backgroundColor": "#F8F8F8"
  131. }
  132. // "tabBar": {
  133. // "color": "#909399",
  134. // "selectedColor": "#303133",
  135. // "borderStyle": "black",
  136. // "backgroundColor": "#ffffff",
  137. // "list": [{
  138. // "pagePath": "pages/index/index",
  139. // "iconPath": "static/index.png",
  140. // "selectedIconPath": "static/index-selected.png",
  141. // "text": "首页"
  142. // }, {
  143. // "pagePath": "pages/center/index",
  144. // "iconPath": "static/center.png",
  145. // "selectedIconPath": "static/center-selected.png",
  146. // "text": "我"
  147. // }]
  148. // }
  149. }