pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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": "#1F1F1F",
  49. // #355C76
  50. "list": [{
  51. "pagePath": "pages/index/Index",
  52. "iconPath": "static/picture/index.png",
  53. "selectedIconPath": "static/picture/indexRed.png",
  54. "text": "监视"
  55. }, {
  56. "pagePath": "pages/analysis/Analysis",
  57. "iconPath": "static/picture/analysis.png",
  58. "selectedIconPath": "static/picture/analysisRed.png",
  59. "text": "分析"
  60. }, {
  61. "pagePath": "pages/forecast/Forecast",
  62. "iconPath": "static/picture/forecast.png",
  63. "selectedIconPath": "static/picture/forecastRed.png",
  64. "text": "预测"
  65. }, {
  66. "pagePath": "pages/task/Task",
  67. "iconPath": "static/picture/task.png",
  68. "selectedIconPath": "static/picture/taskRed.png",
  69. "text": "任务"
  70. },{
  71. "pagePath": "pages/mine/Mine",
  72. "iconPath": "static/picture/mine.png",
  73. "selectedIconPath": "static/picture/mineRed.png",
  74. "text": "我"
  75. }]
  76. }
  77. }