pages.json 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "pages/ucenter/index",
  5. "style" :
  6. {
  7. "navigationBarTitleText": "个人中心",
  8. "enablePullDownRefresh": false
  9. }
  10. },
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "navigationBarTitleText": "重卡智能换电",
  15. "enablePullDownRefresh": false
  16. }
  17. },
  18. {
  19. "path" : "pages/ucenter/car",
  20. "style" :
  21. {
  22. "navigationBarTitleText": "我的车辆",
  23. "enablePullDownRefresh": false
  24. }
  25. },
  26. {
  27. "path" : "pages/scan/index",
  28. "style" :
  29. {
  30. "navigationBarTitleText": "确认换电信息",
  31. "enablePullDownRefresh": false
  32. }
  33. },
  34. {
  35. "path" : "pages/carinfo/index",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "车辆信息",
  39. "enablePullDownRefresh": false
  40. }
  41. },
  42. {
  43. "path" : "pages/monitoring/index",
  44. "style" :
  45. {
  46. "navigationBarTitleText": "换电监控",
  47. "enablePullDownRefresh": false
  48. }
  49. },
  50. {
  51. "path" : "pages/batteryinfo/index",
  52. "style" :
  53. {
  54. "navigationBarTitleText": "电池信息",
  55. "enablePullDownRefresh": false
  56. }
  57. }
  58. ,{
  59. "path" : "pages/ucenter/record",
  60. "style" :
  61. {
  62. "navigationBarTitleText": "我的换电记录",
  63. "enablePullDownRefresh": false
  64. }
  65. }
  66. ,{
  67. "path" : "pages/public/login",
  68. "style" :
  69. {
  70. "navigationBarTitleText": "",
  71. "enablePullDownRefresh": false
  72. }
  73. }
  74. ],
  75. "globalStyle": {
  76. "navigationBarTextStyle": "black",
  77. "navigationBarTitleText": "uni-app",
  78. "navigationBarBackgroundColor": "#F8F8F8",
  79. "backgroundColor": "#F8F8F8"
  80. },
  81. "uniIdRouter": {},
  82. "tabBar": {
  83. "custom": true,
  84. "color": "#333",
  85. "selectedColor": "#6dc67d",
  86. "list": [{
  87. "pagePath": "pages/index/index",
  88. "iconPath": "static/tabbar/menu-1.png",
  89. "selectedIconPath": "static/tabbar/menu-1.png",
  90. "text": "首页"
  91. },
  92. {
  93. "pagePath": "pages/scan/index",
  94. "iconPath": "static/tabbar/menu-2.png",
  95. "selectedIconPath": "static/tabbar/menu-2.png",
  96. "text": "扫码换电"
  97. },
  98. {
  99. "pagePath": "pages/ucenter/index",
  100. "iconPath": "static/tabbar/menu-3.png",
  101. "selectedIconPath": "static/tabbar/menu-3.png",
  102. "text": "我的"
  103. }
  104. ]
  105. }
  106. }