pages.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/login",
  5. "style": {
  6. "navigationStyle": "custom"
  7. }
  8. },
  9. {
  10. "path": "pages/index/index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/exam/index",
  17. "style": {
  18. "navigationBarTitleText": "考试"
  19. }
  20. },
  21. {
  22. "path": "pages/my/index",
  23. "style": {
  24. "navigationBarTitleText": "我的"
  25. }
  26. },
  27. {
  28. "path": "pages/demo/index",
  29. "style": {
  30. "navigationBarTitleText": "demo"
  31. }
  32. },
  33. {
  34. "path": "pages/course/index",
  35. "style": {
  36. "navigationBarTitleText": "课程"
  37. }
  38. },
  39. {
  40. "path": "pages/score/index",
  41. "style": {
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/selectGradesTerms/index",
  47. "style": {
  48. "navigationBarTitleText": "选择年级和学期",
  49. "navigationStyle": "custom"
  50. }
  51. },
  52. {
  53. "path": "pages/study/index",
  54. "style": {
  55. "navigationBarTitleText": "学习",
  56. "navigationStyle": "custom"
  57. }
  58. },
  59. {
  60. "path": "pages/study/catalogue",
  61. "style": {
  62. "navigationBarTitleText": "目录",
  63. "navigationStyle": "custom"
  64. }
  65. }
  66. ],
  67. "tabBar": {
  68. "color": "#565656",
  69. "selectedColor": "#0856E6",
  70. "borderStyle": "black",
  71. "backgroundColor": "#ffffff",
  72. "fontSize": "13px",
  73. "iconWidth": "28px",
  74. "spacing": "0px",
  75. "list": [{
  76. "pagePath": "pages/index/index",
  77. "iconPath": "static/images/tabbar/unselect/index-sj.png",
  78. "selectedIconPath": "static/images/tabbar/select/index-sj.png",
  79. "text": "首页"
  80. }, {
  81. "pagePath": "pages/exam/index",
  82. "iconPath": "static/images/tabbar/unselect/exam-sj.png",
  83. "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
  84. "text": "考试"
  85. }, {
  86. "pagePath": "pages/course/index",
  87. "iconPath": "static/images/tabbar/unselect/kecheng-sj.png",
  88. "selectedIconPath": "static/images/tabbar/select/kecheng-sj.png",
  89. "text": "课程"
  90. }, {
  91. "pagePath": "pages/score/index",
  92. "iconPath": "static/images/tabbar/unselect/score-sj.png",
  93. "selectedIconPath": "static/images/tabbar/select/score-sj.png",
  94. "text": "成绩"
  95. }, {
  96. "pagePath": "pages/my/index",
  97. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  98. "selectedIconPath": "static/images/tabbar/unselect/my-sj.png",
  99. "text": "我的"
  100. }]
  101. },
  102. "globalStyle": {
  103. "navigationBarTextStyle": "black",
  104. "navigationBarTitleText": "麦塔软件",
  105. "navigationBarBackgroundColor": "#F8F8F8",
  106. "backgroundColor": "#F8F8F8"
  107. /* "app-plus": {
  108. "background": "#efeff4"
  109. } */
  110. },
  111. "uniIdRouter": {}
  112. }