pages.json 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. "globalStyle": {
  60. "navigationBarTextStyle": "black",
  61. "navigationBarTitleText": "鑫恩华",
  62. "navigationBarBackgroundColor": "#FFFFFF",
  63. "backgroundColor": "#f3f3f3"
  64. },
  65. "tabBar": {
  66. "borderStyle": "white",
  67. "list": [{
  68. "pagePath": "pages/index/index",
  69. "iconPath": "/static/tabbar/activity.png",
  70. "selectedIconPath": "/static/tabbar/activty-ed.png",
  71. "text": "首页"
  72. },
  73. {
  74. "pagePath": "pages/taxationLesson/index",
  75. "iconPath": "/static/tabbar/honer.png",
  76. "selectedIconPath": "/static/tabbar/honer-ed.png",
  77. "text": "财税课堂"
  78. },
  79. {
  80. "pagePath": "pages/appCenter/index",
  81. "iconPath": "/static/tabbar/honer.png",
  82. "selectedIconPath": "/static/tabbar/honer-ed.png",
  83. "text": "应用中心"
  84. },
  85. {
  86. "pagePath": "pages/self/index",
  87. "iconPath": "/static/tabbar/self.png",
  88. "selectedIconPath": "/static/tabbar/self-ed.png",
  89. "text": "我的"
  90. }
  91. ]
  92. }
  93. }