pages.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path":"components/login/Login",
  5. "style":{
  6. "navigationBarTitleText": "sis登录页面"
  7. }
  8. },
  9. {
  10. "path": "pages/index/Index",
  11. "style": {
  12. "navigationBarTitleText": "监视"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/analysis/Analysis",
  17. "style" : {
  18. "navigationBarTitleText": "分析"
  19. }
  20. }
  21. ,{
  22. "path" : "pages/forecast/Forecast",
  23. "style" : {
  24. "navigationBarTitleText": "预测"
  25. }
  26. },{
  27. "path" : "pages/task/Task",
  28. "style" : {
  29. "navigationBarTitleText": "任务"
  30. }
  31. },
  32. {
  33. "path": "pages/mine/Mine",
  34. "style": {
  35. "navigationBarTitleText": "我的"
  36. }
  37. },
  38. {
  39. "path" : "components/detail/Detail",
  40. "style" : {}
  41. },
  42. {
  43. "path" : "components/windStationCardDetail/WindStationCardDetail",
  44. "style" : {}
  45. },
  46. {
  47. "path":"components/monitor/MatrixMonitor",
  48. "style":{}
  49. },
  50. {
  51. "path":"components/monitor/PersonalMonitor",
  52. "style":{}
  53. },
  54. {
  55. "path":"components/monitor/StatusMonitor",
  56. "style":{}
  57. },
  58. {
  59. "path":"components/monitor/WindMonitor",
  60. "style":{}
  61. }
  62. ,{
  63. "path" : "components/bracelet/braceletHistoryCurve",
  64. "style" : {}
  65. }
  66. ,{
  67. "path" : "components/bracelet/raceletDetails/heartbeatDetails",
  68. "style" : {}
  69. },
  70. {
  71. "path":"components/weatherProphethomepage/WeatherProphethomepage",
  72. "style": {}
  73. },
  74. {
  75. "path":"components/weatherProphethomepage/weathercomponents/thermometerCard/ThermometerCard",
  76. "style":{}
  77. },
  78. {
  79. "path":"components/weatherProphethomepage/weathercomponents/weatherTemperatureWindSpeedCard_7/WeatherTemperatureWindSpeedCard_7",
  80. "style":{}
  81. },
  82. {
  83. "path":"components/weatherProphethomepage/weathercomponents/weatherCalendarCardList8_15/weatherCalendarCardList8_15",
  84. "style":{}
  85. },
  86. {
  87. "path":"components/weatherProphethomepage/weathercomponents/weatherCalendarCardList40/weatherCalendarCardList40",
  88. "style":{}
  89. },
  90. {
  91. "path":"components/weatherProphethomepage/weatherDetail/Detail",
  92. "style":{}
  93. },
  94. {
  95. "path":"components/windFarmcard/WindFarmcard",
  96. "style":{}
  97. }
  98. ],
  99. "globalStyle": {
  100. "navigationBarTextStyle": "black",
  101. "navigationBarTitleText": "sis手机端",
  102. "navigationBarBackgroundColor": "#F8F8F8",
  103. "backgroundColor": "#F8F8F8",
  104. "navigationStyle": "custom"
  105. },
  106. "tabBar": {
  107. "color": "#DEDFE3",
  108. "selectedColor": "white",
  109. "borderStyle": "black",
  110. "backgroundColor": "#1F1F1F",
  111. // #355C76
  112. "list": [{
  113. "pagePath": "pages/index/Index",
  114. "iconPath": "static/picture/index.png",
  115. "selectedIconPath": "static/picture/indexRed.png",
  116. "text": "监视"
  117. }, {
  118. "pagePath": "pages/analysis/Analysis",
  119. "iconPath": "static/picture/analysis.png",
  120. "selectedIconPath": "static/picture/analysisRed.png",
  121. "text": "分析"
  122. }, {
  123. "pagePath": "pages/forecast/Forecast",
  124. "iconPath": "static/picture/forecast.png",
  125. "selectedIconPath": "static/picture/forecastRed.png",
  126. "text": "预测"
  127. }, {
  128. "pagePath": "pages/task/Task",
  129. "iconPath": "static/picture/task.png",
  130. "selectedIconPath": "static/picture/taskRed.png",
  131. "text": "任务"
  132. },{
  133. "pagePath": "pages/mine/Mine",
  134. "iconPath": "static/picture/mine.png",
  135. "selectedIconPath": "static/picture/mineRed.png",
  136. "text": "我"
  137. }]
  138. }
  139. }