pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. "globalStyle": {
  56. "navigationBarTextStyle": "black",
  57. "navigationBarTitleText": "黑龙滩",
  58. "navigationBarBackgroundColor": "#F8F8F8"
  59. },
  60. "tabBar": {
  61. "color": "#333",
  62. "selectedColor": "#2D74E7",
  63. "backgroundColor": "#fff",
  64. "fontSize": "14px",
  65. "height": "63px",
  66. "borderStyle": "white",
  67. "list": [
  68. {
  69. "pagePath": "pages/index/index",
  70. "text": "首页",
  71. "iconPath": "static/images/tabbar/home.svg",
  72. "selectedIconPath": "static/images/tabbar/home-a.svg"
  73. },
  74. {
  75. "pagePath": "pages/map/index",
  76. "text": "地图",
  77. "iconPath": "static/images/tabbar/map.svg",
  78. "selectedIconPath": "static/images/tabbar/map-a.svg"
  79. },
  80. {
  81. "pagePath": "pages/message/index",
  82. "text": "消息",
  83. "iconPath": "static/images/tabbar/message.svg",
  84. "selectedIconPath": "static/images/tabbar/message-a.svg"
  85. },
  86. {
  87. "pagePath": "pages/user/index",
  88. "text": "我的",
  89. "iconPath": "static/images/tabbar/user.svg",
  90. "selectedIconPath": "static/images/tabbar/user-a.svg"
  91. }
  92. ]
  93. },
  94. "uniIdRouter": {}
  95. }