pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "空i企"
  7. }
  8. },
  9. {
  10. "path": "pages/selfCenter/index",
  11. "style": {
  12. "navigationBarTitleText": "我的"
  13. }
  14. },
  15. {
  16. "path": "pages/appeal/index",
  17. "style": {
  18. "navigationBarTitleText": "提建议"
  19. }
  20. },
  21. {
  22. "path": "pages/policy/index",
  23. "style": {
  24. "navigationBarTitleText": "搜政策"
  25. }
  26. },
  27. {
  28. "path": "pages/park/index",
  29. "style": {
  30. "navigationBarTitleText": "园区专区",
  31. "navigationBarBackgroundColor": "#02A7F0",
  32. "navigationBarTextStyle":"white"
  33. }
  34. },
  35. {
  36. "path": "pages/park/map_search",
  37. "style": {
  38. "navigationBarTitleText": "地图找园区",
  39. "navigationBarBackgroundColor": "#02A7F0",
  40. "navigationBarTextStyle":"white"
  41. }
  42. },
  43. {
  44. "path": "pages/park/park_deatil",
  45. "style": {
  46. "navigationBarTitleText": "园区概况",
  47. "navigationBarBackgroundColor": "#02A7F0",
  48. "navigationBarTextStyle":"white"
  49. }
  50. },
  51. {
  52. "path": "pages/activity/index",
  53. "style": {
  54. "navigationBarTitleText": "找活动"
  55. }
  56. },
  57. {
  58. "path": "pages/supply/index",
  59. "style": {
  60. "navigationBarTitleText": "发供需"
  61. }
  62. },
  63. {
  64. "path": "pages/enterprise/index",
  65. "style": {
  66. "navigationBarTitleText": "查企业"
  67. }
  68. },
  69. {
  70. "path": "pages/service/index",
  71. "style": {
  72. "navigationBarTitleText": "找服务"
  73. }
  74. }
  75. ],
  76. "globalStyle": {
  77. "navigationBarTextStyle": "black",
  78. "navigationBarTitleText": "空i企",
  79. "navigationBarBackgroundColor": "#F8F8F8",
  80. "backgroundColor": "#F8F8F8"
  81. },
  82. "tabBar": {
  83. "color": "#d8d8d8",
  84. "selectedColor": "#4a4a4a",
  85. "borderStyle": "white",
  86. "backgroundColor": "#FFFFFF",
  87. "list": [{
  88. "pagePath": "pages/index/index",
  89. "iconPath": "/static/tabbar/home-select.png",
  90. "selectedIconPath": "/static/tabbar/home-selected.png",
  91. "text": "首页"
  92. },
  93. {
  94. "pagePath": "pages/selfCenter/index",
  95. "iconPath": "/static/tabbar/user-select.png",
  96. "selectedIconPath": "/static/tabbar/user-selected.png",
  97. "text": "我的"
  98. }
  99. ]
  100. }
  101. }