pages.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/home/index",
  5. "style": {
  6. "navigationStyle": "custom",
  7. "navigationBarTitleText": "首页"
  8. }
  9. },
  10. {
  11. "path": "pages/learn/index",
  12. "style": {
  13. "navigationStyle": "custom",
  14. "navigationBarTitleText": "学习本"
  15. }
  16. },
  17. {
  18. "path": "pages/challenge/index",
  19. "style": {
  20. "navigationStyle": "custom",
  21. "navigationBarTitleText": "挑战"
  22. }
  23. },
  24. {
  25. "path": "pages/user/index",
  26. "style": {
  27. "navigationStyle": "custom",
  28. "navigationBarTitleText": "我的"
  29. }
  30. },
  31. {
  32. "path": "pages/regulations/index",
  33. "style": {
  34. "navigationStyle": "custom",
  35. "navigationBarTitleText": "法规"
  36. }
  37. },
  38. {
  39. "path": "pages/user/settings",
  40. "style": {
  41. "navigationBarTitleText": "设置"
  42. }
  43. },
  44. {
  45. "path": "pages/login/index",
  46. "style": {
  47. "navigationBarTitleText": "登录注册"
  48. }
  49. }
  50. ],
  51. "globalStyle": {
  52. "navigationBarTextStyle": "black",
  53. "navigationBarTitleText": "uni-app",
  54. "navigationBarBackgroundColor": "#F8F8F8",
  55. "backgroundColor": "#F8F8F8",
  56. "app-plus": {
  57. "background": "#efeff4"
  58. }
  59. },
  60. "tabBar": {
  61. "color": "#7A7E83",
  62. "selectedColor": "#3cc51f",
  63. "borderStyle": "black",
  64. "backgroundColor": "#ffffff",
  65. "list": [
  66. {
  67. "pagePath": "pages/home/index",
  68. "iconPath": "static/icons/c1.png",
  69. "selectedIconPath": "static/icons/c2.png",
  70. "text": "首页"
  71. },
  72. {
  73. "pagePath": "pages/learn/index",
  74. "iconPath": "static/icons/c1.png",
  75. "selectedIconPath": "static/icons/c2.png",
  76. "text": "学习本"
  77. },
  78. {
  79. "pagePath": "pages/challenge/index",
  80. "iconPath": "static/icons/c1.png",
  81. "selectedIconPath": "static/icons/c2.png",
  82. "text": "挑战"
  83. },
  84. {
  85. "pagePath": "pages/user/index",
  86. "iconPath": "static/icons/c1.png",
  87. "selectedIconPath": "static/icons/c2.png",
  88. "text": "我的"
  89. }
  90. ]
  91. }
  92. }