pages.json 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. "globalStyle": {
  72. "navigationBarTextStyle": "black",
  73. "navigationBarTitleText": "sis手机端",
  74. "navigationBarBackgroundColor": "#F8F8F8",
  75. "backgroundColor": "#F8F8F8",
  76. "navigationStyle": "custom"
  77. },
  78. "tabBar": {
  79. "color": "#DEDFE3",
  80. "selectedColor": "white",
  81. "borderStyle": "black",
  82. "backgroundColor": "#1F1F1F",
  83. // #355C76
  84. "list": [{
  85. "pagePath": "pages/index/Index",
  86. "iconPath": "static/picture/index.png",
  87. "selectedIconPath": "static/picture/indexRed.png",
  88. "text": "监视"
  89. }, {
  90. "pagePath": "pages/analysis/Analysis",
  91. "iconPath": "static/picture/analysis.png",
  92. "selectedIconPath": "static/picture/analysisRed.png",
  93. "text": "分析"
  94. }, {
  95. "pagePath": "pages/forecast/Forecast",
  96. "iconPath": "static/picture/forecast.png",
  97. "selectedIconPath": "static/picture/forecastRed.png",
  98. "text": "预测"
  99. }, {
  100. "pagePath": "pages/task/Task",
  101. "iconPath": "static/picture/task.png",
  102. "selectedIconPath": "static/picture/taskRed.png",
  103. "text": "任务"
  104. },{
  105. "pagePath": "pages/mine/Mine",
  106. "iconPath": "static/picture/mine.png",
  107. "selectedIconPath": "static/picture/mineRed.png",
  108. "text": "我"
  109. }]
  110. }
  111. }