pages.json 1.8 KB

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