pages.json 2.4 KB

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