pages.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login/autoLogin",
  5. "style": {
  6. "navigationBarTitleText": ""
  7. }
  8. },
  9. {
  10. "path": "pages/login/index",
  11. "style": {
  12. "navigationBarTitleText": ""
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "首页",
  19. "transparentTitle": "always"
  20. }
  21. },
  22. {
  23. "path": "pages/map/index",
  24. "style": {
  25. "navigationBarTitleText": "灌区地图"
  26. }
  27. },
  28. {
  29. "path": "pages/message/index",
  30. "style": {
  31. "navigationBarTitleText": "消息"
  32. }
  33. },
  34. {
  35. "path": "pages/user/index",
  36. "style": {
  37. "navigationBarTitleText": "我的"
  38. }
  39. },
  40. {
  41. "path": "pages/index/pages/Deploy/index",
  42. "style": {
  43. "navigationBarTitleText": "调配计划",
  44. "navigationBarBackgroundColor": "#e9f3fd"
  45. }
  46. },
  47. {
  48. "path": "pages/index/pages/Reservoir/index",
  49. "style": {
  50. "navigationBarTitleText": "水库水情",
  51. "navigationBarBackgroundColor": "#e9f3fd"
  52. }
  53. },
  54. {
  55. "path": "pages/index/pages/Reservoir/create/index",
  56. "style": {
  57. "navigationBarTitleText": "上报水库水情",
  58. "navigationBarBackgroundColor": "#e9f3fd"
  59. }
  60. },
  61. {
  62. "path": "pages/index/pages/Reservoir/info/index",
  63. "style": {
  64. "navigationBarTitleText": "水库水情详情",
  65. "navigationBarBackgroundColor": "#e9f3fd"
  66. }
  67. }
  68. ],
  69. "globalStyle": {
  70. "navigationBarTextStyle": "black",
  71. "navigationBarTitleText": "黑龙滩",
  72. "navigationBarBackgroundColor": "#F8F8F8"
  73. },
  74. "tabBar": {
  75. "color": "#333",
  76. "selectedColor": "#2D74E7",
  77. "backgroundColor": "#fff",
  78. "fontSize": "14px",
  79. "height": "63px",
  80. "borderStyle": "white",
  81. "list": [
  82. {
  83. "pagePath": "pages/index/index",
  84. "text": "首页",
  85. "iconPath": "static/images/tabbar/home.svg",
  86. "selectedIconPath": "static/images/tabbar/home-a.svg"
  87. },
  88. {
  89. "pagePath": "pages/map/index",
  90. "text": "地图",
  91. "iconPath": "static/images/tabbar/map.svg",
  92. "selectedIconPath": "static/images/tabbar/map-a.svg"
  93. },
  94. {
  95. "pagePath": "pages/message/index",
  96. "text": "消息",
  97. "iconPath": "static/images/tabbar/message.svg",
  98. "selectedIconPath": "static/images/tabbar/message-a.svg"
  99. },
  100. {
  101. "pagePath": "pages/user/index",
  102. "text": "我的",
  103. "iconPath": "static/images/tabbar/user.svg",
  104. "selectedIconPath": "static/images/tabbar/user-a.svg"
  105. }
  106. ]
  107. },
  108. "uniIdRouter": {}
  109. }