pages.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path" : "components/login/Login",
  5. "style" : {
  6. "navigationBarTitleText": "登录"
  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. "globalStyle": {
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "sis手机端",
  46. "navigationBarBackgroundColor": "#F8F8F8",
  47. "backgroundColor": "#F8F8F8",
  48. "navigationStyle": "custom"
  49. },
  50. "tabBar": {
  51. "color": "#DEDFE3",
  52. "selectedColor": "white",
  53. "borderStyle": "black",
  54. "backgroundColor": "#3D6C8A",
  55. "list": [{
  56. "pagePath": "pages/index/Index",
  57. "iconPath": "static/picture/indexGray.png",
  58. "selectedIconPath": "static/picture/index.png",
  59. "text": "监视"
  60. }, {
  61. "pagePath": "pages/analysis/Analysis",
  62. "iconPath": "static/picture/analysisGray.png",
  63. "selectedIconPath": "static/picture/analysis.png",
  64. "text": "分析"
  65. }, {
  66. "pagePath": "pages/forecast/Forecast",
  67. "iconPath": "static/picture/forecastGray.png",
  68. "selectedIconPath": "static/picture/forecast.png",
  69. "text": "预测"
  70. }, {
  71. "pagePath": "pages/task/Task",
  72. "iconPath": "static/picture/taskGray.png",
  73. "selectedIconPath": "static/picture/task.png",
  74. "text": "任务"
  75. },{
  76. "pagePath": "pages/mine/Mine",
  77. "iconPath": "static/picture/mineGray.png",
  78. "selectedIconPath": "static/picture/mine.png",
  79. "text": "我"
  80. }]
  81. }
  82. }