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/index/index",
  8. "style": {
  9. "navigationBarTitleText": "停车巡检端",
  10. "navigationStyle": "custom"
  11. }
  12. }, {
  13. "path": "pages/login/login",
  14. "style": {
  15. "navigationBarTitleText": "登录",
  16. "navigationStyle": "custom",
  17. "enablePullDownRefresh": false
  18. }
  19. }, {
  20. "path": "pages/ownerInquiry/ownerInquiry",
  21. "style": {
  22. "navigationBarTitleText": "车主查询",
  23. "enablePullDownRefresh": false,
  24. "navigationStyle": "custom"
  25. }
  26. }, {
  27. "path": "pages/mine/mine",
  28. "style": {
  29. "navigationBarTitleText": "我的",
  30. "enablePullDownRefresh": false,
  31. "navigationStyle": "custom"
  32. }
  33. }, {
  34. "path": "pages/index/messageCenter/messageCenter",
  35. "style": {
  36. "navigationBarTitleText": "消息中心",
  37. "enablePullDownRefresh": false,
  38. "navigationBarBackgroundColor": "#5290FF",
  39. "navigationBarTextStyle": "white"
  40. }
  41. }, {
  42. "path": "pages/mine/problemReporting/problemReporting",
  43. "style": {
  44. "navigationBarTitleText": "问题上报",
  45. "enablePullDownRefresh": false
  46. }
  47. }, {
  48. "path": "pages/mine/changePassword/changePassword",
  49. "style": {
  50. "navigationBarTitleText": "修改密码",
  51. "enablePullDownRefresh": false
  52. }
  53. }, {
  54. "path": "pages/ownerInquiry/queryResults/queryResults",
  55. "style": {
  56. "navigationBarTitleText": "查询结果",
  57. "enablePullDownRefresh": false
  58. }
  59. }, {
  60. "path": "pages/index/deviceList/deviceList",
  61. "style": {
  62. "navigationBarTitleText": "全部设备",
  63. "enablePullDownRefresh": false,
  64. "navigationBarBackgroundColor": "#5290FF",
  65. "navigationBarTextStyle": "white"
  66. }
  67. }, {
  68. "path": "pages/index/chooseRoad/chooseRoad",
  69. "style": {
  70. "navigationBarTitleText": "选择路段",
  71. "enablePullDownRefresh": false,
  72. "navigationBarBackgroundColor": "#5290FF",
  73. "navigationBarTextStyle": "white"
  74. }
  75. }, {
  76. "path": "pages/index/geomagDetails/geomagDetails",
  77. "style": {
  78. "navigationBarTitleText": "地磁",
  79. "enablePullDownRefresh": false
  80. }
  81. }, {
  82. "path": "pages/index/lockDetails/lockDetails",
  83. "style": {
  84. "navigationBarTitleText": "车位锁",
  85. "enablePullDownRefresh": false
  86. }
  87. }, {
  88. "path": "pages/index/gateDetails/gateDetails",
  89. "style": {
  90. "navigationBarTitleText": "栏杆道闸",
  91. "enablePullDownRefresh": false
  92. }
  93. }, {
  94. "path": "pages/index/clockIn/clockIn",
  95. "style": {
  96. "navigationBarTitleText": "打卡",
  97. "enablePullDownRefresh": false,
  98. "navigationBarBackgroundColor": "#5290FF",
  99. "navigationBarTextStyle": "white"
  100. }
  101. }, {
  102. "path": "pages/index/deviceDetails/deviceDetails",
  103. "style": {
  104. "navigationBarTitleText": "设备详情",
  105. "enablePullDownRefresh": false
  106. }
  107. }
  108. ],
  109. "globalStyle": {
  110. "navigationBarTextStyle": "black",
  111. "navigationBarTitleText": "停车巡检端",
  112. "navigationBarBackgroundColor": "#F8F8F8",
  113. "backgroundColor": "#F5F5F5"
  114. },
  115. "tabBar": {
  116. "color": "#a7a7a7",
  117. "selectedColor": "#2080FF",
  118. "borderStyle": "black",
  119. "backgroundColor": "#ffffff",
  120. "list": [{
  121. "pagePath": "pages/index/index",
  122. "iconPath": "static/tabbar/index.png",
  123. "selectedIconPath": "static/tabbar/index-selected.png",
  124. "text": "首页"
  125. }, {
  126. "pagePath": "pages/ownerInquiry/ownerInquiry",
  127. "iconPath": "static/tabbar/search.png",
  128. "selectedIconPath": "static/tabbar/search-selected.png",
  129. "text": "车主查询"
  130. }, {
  131. "pagePath": "pages/mine/mine",
  132. "iconPath": "static/tabbar/mine.png",
  133. "selectedIconPath": "static/tabbar/mine-selected.png",
  134. "text": "我的"
  135. }]
  136. }
  137. }