pages.json 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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. "path" : "components/task/taskCard/taskCard",
  100. "style" : {}
  101. }
  102. ],
  103. "globalStyle": {
  104. "navigationBarTextStyle": "black",
  105. "navigationBarTitleText": "sis手机端",
  106. "navigationBarBackgroundColor": "#F8F8F8",
  107. "backgroundColor": "#F8F8F8",
  108. "navigationStyle": "custom"
  109. },
  110. "tabBar": {
  111. "color": "#DEDFE3",
  112. "selectedColor": "white",
  113. "borderStyle": "black",
  114. "backgroundColor": "#1F1F1F",
  115. // #355C76
  116. "list": [{
  117. "pagePath": "pages/index/Index",
  118. "iconPath": "static/picture/index.png",
  119. "selectedIconPath": "static/picture/indexRed.png",
  120. "text": "监视"
  121. }, {
  122. "pagePath": "pages/analysis/Analysis",
  123. "iconPath": "static/picture/analysis.png",
  124. "selectedIconPath": "static/picture/analysisRed.png",
  125. "text": "分析"
  126. }, {
  127. "pagePath": "pages/forecast/Forecast",
  128. "iconPath": "static/picture/forecast.png",
  129. "selectedIconPath": "static/picture/forecastRed.png",
  130. "text": "预测"
  131. }, {
  132. "pagePath": "pages/task/Task",
  133. "iconPath": "static/picture/task.png",
  134. "selectedIconPath": "static/picture/taskRed.png",
  135. "text": "任务"
  136. },{
  137. "pagePath": "pages/mine/Mine",
  138. "iconPath": "static/picture/mine.png",
  139. "selectedIconPath": "static/picture/mineRed.png",
  140. "text": "我"
  141. }]
  142. }
  143. }