pages.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/taxationLesson/index",
  5. "style": {
  6. "navigationBarTitleText": "创业社区"
  7. }
  8. },
  9. {
  10. "path": "pages/appCenter/index",
  11. "style": {
  12. "navigationBarTitleText": "应用中心"
  13. }
  14. },
  15. {
  16. "path": "pages/index/index",
  17. "style": {
  18. "navigationBarTitleText": "首页"
  19. }
  20. },
  21. {
  22. "path": "pages/self/index",
  23. "style": {
  24. "navigationBarTitleText": "我的"
  25. }
  26. },
  27. {
  28. "path": "pages/auth/index",
  29. "style": {
  30. "navigationBarTitleText": "鑫恩华"
  31. }
  32. },
  33. {
  34. "path": "pages/webview/web-view",
  35. "style": {
  36. "navigationBarTitleText": "外部链接"
  37. }
  38. },
  39. {
  40. "path": "pages/self/about",
  41. "style": {
  42. "navigationBarTitleText": "关于我们"
  43. }
  44. },
  45. {
  46. "path": "pages/self/info",
  47. "style": {
  48. "navigationBarTitleText": "个人资料"
  49. }
  50. },
  51. {
  52. "path" : "pages/self/enterpriseInfo",
  53. "style" :
  54. {
  55. "navigationBarTitleText" : "企业资料"
  56. }
  57. },
  58. {
  59. "path" : "pages/self/commonQuestion",
  60. "style" :
  61. {
  62. "navigationBarTitleText" : "常见问题"
  63. }
  64. }
  65. ],
  66. "globalStyle": {
  67. "navigationBarTextStyle": "black",
  68. "navigationBarTitleText": "鑫恩华",
  69. "navigationBarBackgroundColor": "#FFFFFF",
  70. "backgroundColor": "#f3f3f3"
  71. },
  72. "tabBar": {
  73. "borderStyle": "white",
  74. "list": [{
  75. "pagePath": "pages/index/index",
  76. "iconPath": "/static/tabbar/activity.png",
  77. "selectedIconPath": "/static/tabbar/activty-ed.png",
  78. "text": "首页"
  79. },
  80. {
  81. "pagePath": "pages/taxationLesson/index",
  82. "iconPath": "/static/tabbar/honer.png",
  83. "selectedIconPath": "/static/tabbar/honer-ed.png",
  84. "text": "财税课堂"
  85. },
  86. {
  87. "pagePath": "pages/appCenter/index",
  88. "iconPath": "/static/tabbar/honer.png",
  89. "selectedIconPath": "/static/tabbar/honer-ed.png",
  90. "text": "应用中心"
  91. },
  92. {
  93. "pagePath": "pages/self/index",
  94. "iconPath": "/static/tabbar/self.png",
  95. "selectedIconPath": "/static/tabbar/self-ed.png",
  96. "text": "我的"
  97. }
  98. ]
  99. }
  100. }