pages.json 1.8 KB

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