pages.json 2.6 KB

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