pages.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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. "navigationStyle": "custom"
  13. }
  14. },
  15. {
  16. "path" : "pages/exam/index",
  17. "style": {
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path" : "pages/my/index",
  23. "style" :
  24. {
  25. "navigationBarTitleText" : "我的"
  26. }
  27. },
  28. {
  29. "path" : "pages/my/mesList",
  30. "style" :
  31. {
  32. "navigationBarTitleText" : "消息"
  33. }
  34. },
  35. {
  36. "path" : "pages/my/zhengshu",
  37. "style" :
  38. {
  39. "navigationBarTitleText" : "证书"
  40. }
  41. },
  42. {
  43. "path" : "pages/my/setting",
  44. "style" :
  45. {
  46. "navigationBarTitleText" : "设置"
  47. }
  48. },
  49. {
  50. "path" : "pages/demo/index",
  51. "style" :
  52. {
  53. "navigationBarTitleText" : "demo"
  54. }
  55. },
  56. {
  57. "path" : "pages/course/index",
  58. "style" :
  59. {
  60. "navigationBarTitleText" : "课程"
  61. }
  62. },
  63. {
  64. "path" : "pages/course/kechengInfo",
  65. "style" :
  66. {
  67. "navigationBarTitleText" : "课程详情"
  68. }
  69. },
  70. {
  71. "path" : "pages/score/index",
  72. "style" :
  73. {
  74. "navigationStyle" : "custom"
  75. }
  76. },
  77. {
  78. "path" : "pages/score/kaoshiChengjiInfo",
  79. "style" :
  80. {
  81. "navigationStyle" : "custom"
  82. }
  83. },
  84. {
  85. "path" : "pages/exam/exam",
  86. "style": {
  87. "navigationStyle": "custom"
  88. }
  89. },
  90. {
  91. "path" : "pages/lianxi/index",
  92. "style" :
  93. {
  94. "navigationBarTitleText" : "练习"
  95. }
  96. },
  97. {
  98. "path" : "pages/lianxi/lianxi",
  99. "style" :
  100. {
  101. "navigationBarTitleText" : ""
  102. }
  103. },
  104. {
  105. "path" : "pages/baoming/index",
  106. "style" :
  107. {
  108. "navigationBarTitleText" : "报名"
  109. }
  110. },
  111. {
  112. "path" : "pages/cuoti/index",
  113. "style" :
  114. {
  115. "navigationBarTitleText" : "错题"
  116. }
  117. },
  118. {
  119. "path" : "pages/cuoti/cuoti",
  120. "style" :
  121. {
  122. "navigationBarTitleText" : "错题答案"
  123. }
  124. },
  125. {
  126. "path" : "pages/my/mesPage",
  127. "style" :
  128. {
  129. "navigationBarTitleText" : "消息详情"
  130. }
  131. },
  132. {
  133. "path" : "pages/my/credit",
  134. "style" :
  135. {
  136. "navigationBarTitleText" : "学分"
  137. }
  138. }
  139. ],
  140. "tabBar": {
  141. "color": "#565656",
  142. "selectedColor": "#0856E6",
  143. "borderStyle": "black",
  144. "backgroundColor": "#ffffff",
  145. "fontSize": "13px",
  146. "iconWidth": "28px",
  147. "spacing": "0px",
  148. "list": [{
  149. "pagePath": "pages/index/index",
  150. "iconPath": "static/images/tabbar/unselect/index-sj.png",
  151. "selectedIconPath": "static/images/tabbar/select/index-sj.png",
  152. "text": "首页"
  153. }, {
  154. "pagePath": "pages/exam/index",
  155. "iconPath": "static/images/tabbar/unselect/exam-sj.png",
  156. "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
  157. "text": "考试"
  158. },
  159. {
  160. "pagePath": "pages/score/index",
  161. "iconPath": "static/images/tabbar/unselect/score-sj.png",
  162. "selectedIconPath": "static/images/tabbar/select/score-sj.png",
  163. "text": "成绩"
  164. }, {
  165. "pagePath": "pages/my/index",
  166. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  167. "selectedIconPath": "static/images/tabbar/select/my-sj.png",
  168. "text": "我的"
  169. }]
  170. },
  171. "globalStyle": {
  172. "navigationBarTextStyle": "black",
  173. "navigationBarTitleText": "麦塔软件",
  174. "navigationBarBackgroundColor": "#fff"
  175. },
  176. "uniIdRouter": {}
  177. }