pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. "globalStyle": {
  38. "navigationBarTextStyle": "black",
  39. "navigationBarTitleText": "sis手机端",
  40. "navigationBarBackgroundColor": "#F8F8F8",
  41. "backgroundColor": "#F8F8F8",
  42. "navigationStyle": "custom"
  43. },
  44. "tabBar": {
  45. "color": "#DEDFE3",
  46. "selectedColor": "white",
  47. "borderStyle": "black",
  48. "backgroundColor": "#3D6C8A",
  49. "list": [{
  50. "pagePath": "pages/index/Index",
  51. "iconPath": "static/picture/indexGray.png",
  52. "selectedIconPath": "static/picture/index.png",
  53. "text": "监视"
  54. }, {
  55. "pagePath": "pages/analysis/Analysis",
  56. "iconPath": "static/picture/analysisGray.png",
  57. "selectedIconPath": "static/picture/analysis.png",
  58. "text": "分析"
  59. }, {
  60. "pagePath": "pages/forecast/Forecast",
  61. "iconPath": "static/picture/forecastGray.png",
  62. "selectedIconPath": "static/picture/forecast.png",
  63. "text": "预测"
  64. }, {
  65. "pagePath": "pages/task/Task",
  66. "iconPath": "static/picture/taskGray.png",
  67. "selectedIconPath": "static/picture/task.png",
  68. "text": "任务"
  69. },{
  70. "pagePath": "pages/mine/Mine",
  71. "iconPath": "static/picture/mineGray.png",
  72. "selectedIconPath": "static/picture/mine.png",
  73. "text": "我"
  74. }]
  75. }
  76. }