pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. "navigationBarTitleText": "登录",
  17. "navigationStyle":"custom"
  18. }
  19. },
  20. {
  21. "path": "pages/equipmentList/equipmentList",
  22. "style": {
  23. "navigationStyle":"custom",
  24. "navigationBarTitleText": "设备列表"
  25. }
  26. },
  27. {
  28. "path": "pages/clockIn/clockIn",
  29. "style": {
  30. "navigationStyle":"custom",
  31. "navigationBarTitleText": "打卡"
  32. }
  33. },
  34. {
  35. "path": "pages/ownersQuery/ownersQuery",
  36. "style": {
  37. "navigationStyle":"custom",// 隐藏系统导航栏
  38. "navigationBarTextStyle": "white",
  39. "navigationBarTitleText": "车主查询"
  40. }
  41. },
  42. {
  43. "path": "pages/ownersQuery/queryList/queryList",
  44. "style": {
  45. "navigationStyle":"custom",// 隐藏系统导航栏
  46. "navigationBarTextStyle": "white",
  47. "navigationBarTitleText": "车主查询"
  48. }
  49. },
  50. {
  51. "path": "pages/center/index",
  52. "style": {
  53. "navigationStyle":"custom",// 隐藏系统导航栏
  54. "navigationBarTextStyle": "white",
  55. "navigationBarTitleText": "城市智慧停车"
  56. }
  57. },
  58. {
  59. "path": "pages/report/report",
  60. "style": {
  61. "navigationStyle":"custom",// 隐藏系统导航栏
  62. "navigationBarTitleText": "问题上报"
  63. }
  64. },
  65. {
  66. "path": "pages/center/resetPass/resetPass",
  67. "style": {
  68. "navigationBarTitleText": "重置密码"
  69. }
  70. },
  71. {
  72. "path": "pages/deviceList/deviceList",
  73. "style": {
  74. "navigationStyle":"custom",// 隐藏系统导航栏
  75. "navigationBarTitleText": "路段列表"
  76. }
  77. },
  78. {
  79. "path": "pages/deviceList/deviceListType1/deviceListType1",//地磁
  80. "style": {
  81. "navigationStyle":"custom",// 隐藏系统导航栏
  82. "navigationBarTitleText": "设备列表"
  83. }
  84. },
  85. {
  86. "path": "pages/deviceList/deviceListType1/deviceInfo",//地磁设备详情
  87. "style": {
  88. "navigationStyle":"custom",// 隐藏系统导航栏
  89. "navigationBarTitleText": "设备详情"
  90. }
  91. },
  92. {
  93. "path": "pages/deviceList/deviceListType2/deviceListType2",//车位锁
  94. "style": {
  95. "navigationStyle":"custom",// 隐藏系统导航栏
  96. "navigationBarTitleText": "设备列表"
  97. }
  98. }
  99. ],
  100. "globalStyle": {
  101. "navigationBarTextStyle": "black",
  102. "navigationBarTitleText": "uView",
  103. "navigationBarBackgroundColor": "#F8F8F8",
  104. "backgroundColor": "#F8F8F8",
  105. "backgroundColorTop":"#FFFFFF"
  106. },
  107. "tabBar": {
  108. "color": "#909399",
  109. "selectedColor": "#303133",
  110. "borderStyle": "black",
  111. "backgroundColor": "#ffffff",
  112. "list": [{
  113. "pagePath": "pages/index/index",
  114. "iconPath": "static/index.png",
  115. "selectedIconPath": "static/index-selected.png",
  116. "text": "首页"
  117. }, {
  118. "pagePath": "pages/ownersQuery/ownersQuery",
  119. "iconPath": "static/car_h.png",
  120. "selectedIconPath": "static/car.png",
  121. "text": "车主查询"
  122. }, {
  123. "pagePath": "pages/center/index",
  124. "iconPath": "static/center.png",
  125. "selectedIconPath": "static/center-selected.png",
  126. "text": "我"
  127. }]
  128. }
  129. }