pages.json 2.3 KB

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