pages.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. }
  32. },
  33. {
  34. "path": "pages/activity/index",
  35. "style": {
  36. "navigationBarTitleText": "找活动"
  37. }
  38. },
  39. {
  40. "path": "pages/supply/index",
  41. "style": {
  42. "navigationBarTitleText": "发供需"
  43. }
  44. },
  45. {
  46. "path": "pages/enterprise/index",
  47. "style": {
  48. "navigationBarTitleText": "查企业"
  49. }
  50. },
  51. {
  52. "path": "pages/service/index",
  53. "style": {
  54. "navigationBarTitleText": "找服务"
  55. }
  56. }
  57. ],
  58. "globalStyle": {
  59. "navigationBarTextStyle": "black",
  60. "navigationBarTitleText": "空i企",
  61. "navigationBarBackgroundColor": "#F8F8F8",
  62. "backgroundColor": "#F8F8F8"
  63. },
  64. "tabBar": {
  65. "color": "#d8d8d8",
  66. "selectedColor": "#4a4a4a",
  67. "borderStyle": "white",
  68. "backgroundColor": "#FFFFFF",
  69. "list": [{
  70. "pagePath": "pages/index/index",
  71. "iconPath": "/static/tabbar/page_off.png",
  72. "selectedIconPath": "/static/tabbar/page_on.png",
  73. "text": "首页"
  74. },
  75. {
  76. "pagePath": "pages/selfCenter/index",
  77. "iconPath": "/static/tabbar/self_off.png",
  78. "selectedIconPath": "/static/tabbar/self_on.png",
  79. "text": "我的"
  80. }
  81. ]
  82. }
  83. }