pages.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/Index",
  5. "style": {
  6. "navigationBarTitleText": "监视"
  7. }
  8. }
  9. ,{
  10. "path" : "pages/analysis/Analysis",
  11. "style" : {
  12. "navigationBarTitleText": "分析"
  13. }
  14. }
  15. ,{
  16. "path" : "pages/forecast/Forecast",
  17. "style" : {
  18. "navigationBarTitleText": "预测"
  19. }
  20. },{
  21. "path" : "pages/task/Task",
  22. "style" : {
  23. "navigationBarTitleText": "任务"
  24. }
  25. },
  26. {
  27. "path": "pages/mine/Mine",
  28. "style": {
  29. "navigationBarTitleText": "我的"
  30. }
  31. },
  32. {
  33. "path" : "components/detail/Detail",
  34. "style" : {}
  35. },
  36. {
  37. "path" : "components/windStationCardDetail/WindStationCardDetail",
  38. "style" : {}
  39. },
  40. {
  41. "path":"components/monitor/MatrixMonitor",
  42. "style":{}
  43. },
  44. {
  45. "path":"components/monitor/PersonalMonitor",
  46. "style":{}
  47. },
  48. {
  49. "path":"components/monitor/StatusMonitor",
  50. "style":{}
  51. },
  52. {
  53. "path":"components/monitor/WindMonitor",
  54. "style":{}
  55. }
  56. ],
  57. "globalStyle": {
  58. "navigationBarTextStyle": "black",
  59. "navigationBarTitleText": "sis手机端",
  60. "navigationBarBackgroundColor": "#F8F8F8",
  61. "backgroundColor": "#F8F8F8",
  62. "navigationStyle": "custom"
  63. },
  64. "tabBar": {
  65. "color": "#DEDFE3",
  66. "selectedColor": "white",
  67. "borderStyle": "black",
  68. "backgroundColor": "#1F1F1F",
  69. // #355C76
  70. "list": [{
  71. "pagePath": "pages/index/Index",
  72. "iconPath": "static/picture/index.png",
  73. "selectedIconPath": "static/picture/indexRed.png",
  74. "text": "监视"
  75. }, {
  76. "pagePath": "pages/analysis/Analysis",
  77. "iconPath": "static/picture/analysis.png",
  78. "selectedIconPath": "static/picture/analysisRed.png",
  79. "text": "分析"
  80. }, {
  81. "pagePath": "pages/forecast/Forecast",
  82. "iconPath": "static/picture/forecast.png",
  83. "selectedIconPath": "static/picture/forecastRed.png",
  84. "text": "预测"
  85. }, {
  86. "pagePath": "pages/task/Task",
  87. "iconPath": "static/picture/task.png",
  88. "selectedIconPath": "static/picture/taskRed.png",
  89. "text": "任务"
  90. },{
  91. "pagePath": "pages/mine/Mine",
  92. "iconPath": "static/picture/mine.png",
  93. "selectedIconPath": "static/picture/mineRed.png",
  94. "text": "我"
  95. }]
  96. }
  97. }