pages.json 2.4 KB

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