pages.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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": "提建议"
  28. }
  29. },
  30. {
  31. "path": "pages/policy/index",
  32. "style": {
  33. "navigationBarTitleText": "搜政策"
  34. }
  35. },
  36. {
  37. "path": "pages/park/index",
  38. "style": {
  39. "navigationBarTitleText": "园区专区",
  40. "navigationBarBackgroundColor": "#02A7F0",
  41. "navigationBarTextStyle":"white"
  42. }
  43. },
  44. {
  45. "path": "pages/park/map_search",
  46. "style": {
  47. "navigationBarTitleText": "地图找园区",
  48. "navigationBarBackgroundColor": "#02A7F0",
  49. "navigationBarTextStyle":"white"
  50. }
  51. },
  52. {
  53. "path": "pages/activity/index",
  54. "style": {
  55. "navigationBarTitleText": "找活动"
  56. }
  57. },
  58. {
  59. "path": "pages/supply/index",
  60. "style": {
  61. "navigationBarTitleText": "发供需"
  62. }
  63. },
  64. {
  65. "path": "pages/enterprise/index",
  66. "style": {
  67. "navigationBarTitleText": "查企业"
  68. }
  69. },
  70. {
  71. "path": "pages/service/index",
  72. "style": {
  73. "navigationBarTitleText": "找服务"
  74. }
  75. }
  76. ],
  77. "globalStyle": {
  78. "navigationBarTextStyle": "black",
  79. "navigationBarTitleText": "空i企",
  80. "navigationBarBackgroundColor": "#F8F8F8",
  81. "backgroundColor": "#F8F8F8"
  82. },
  83. "tabBar": {
  84. "color": "#d8d8d8",
  85. "selectedColor": "#4a4a4a",
  86. "borderStyle": "white",
  87. "backgroundColor": "#FFFFFF",
  88. "list": [{
  89. "pagePath": "pages/index/index",
  90. "iconPath": "/static/tabbar/home-select.png",
  91. "selectedIconPath": "/static/tabbar/home-selected.png",
  92. "text": "首页"
  93. },
  94. {
  95. "pagePath": "pages/selfCenter/index",
  96. "iconPath": "/static/tabbar/user-select.png",
  97. "selectedIconPath": "/static/tabbar/user-selected.png",
  98. "text": "我的"
  99. }
  100. ]
  101. }
  102. }