pages.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "sis手机端",
  44. "navigationBarBackgroundColor": "#F8F8F8",
  45. "backgroundColor": "#F8F8F8",
  46. "navigationStyle": "custom"
  47. },
  48. "tabBar": {
  49. "color": "#DEDFE3",
  50. "selectedColor": "white",
  51. "borderStyle": "black",
  52. "backgroundColor": "#1F1F1F",
  53. // #355C76
  54. "list": [{
  55. "pagePath": "pages/index/Index",
  56. "iconPath": "static/picture/index.png",
  57. "selectedIconPath": "static/picture/indexRed.png",
  58. "text": "监视"
  59. }, {
  60. "pagePath": "pages/analysis/Analysis",
  61. "iconPath": "static/picture/analysis.png",
  62. "selectedIconPath": "static/picture/analysisRed.png",
  63. "text": "分析"
  64. }, {
  65. "pagePath": "pages/forecast/Forecast",
  66. "iconPath": "static/picture/forecast.png",
  67. "selectedIconPath": "static/picture/forecastRed.png",
  68. "text": "预测"
  69. }, {
  70. "pagePath": "pages/task/Task",
  71. "iconPath": "static/picture/task.png",
  72. "selectedIconPath": "static/picture/taskRed.png",
  73. "text": "任务"
  74. },{
  75. "pagePath": "pages/mine/Mine",
  76. "iconPath": "static/picture/mine.png",
  77. "selectedIconPath": "static/picture/mineRed.png",
  78. "text": "我"
  79. }]
  80. }
  81. }