pages.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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/cuoti",
  113. // "style" :
  114. // {
  115. // "navigationBarTitleText" : "错题答案"
  116. // }
  117. // },
  118. {
  119. "path" : "pages/my/mesPage",
  120. "style" :
  121. {
  122. "navigationBarTitleText" : "消息详情"
  123. }
  124. },
  125. {
  126. "path" : "pages/my/credit",
  127. "style" :
  128. {
  129. "navigationBarTitleText" : "学分"
  130. }
  131. }
  132. ],
  133. "tabBar": {
  134. "color": "#565656",
  135. "selectedColor": "#0856E6",
  136. "borderStyle": "black",
  137. "backgroundColor": "#ffffff",
  138. "fontSize": "13px",
  139. "iconWidth": "28px",
  140. "spacing": "0px",
  141. "list": [{
  142. "pagePath": "pages/index/index",
  143. "iconPath": "static/images/tabbar/unselect/index-sj.png",
  144. "selectedIconPath": "static/images/tabbar/select/index-sj.png",
  145. "text": "首页"
  146. }, {
  147. "pagePath": "pages/exam/index",
  148. "iconPath": "static/images/tabbar/unselect/exam-sj.png",
  149. "selectedIconPath": "static/images/tabbar/select/exam-sj.png",
  150. "text": "考试"
  151. },
  152. {
  153. "pagePath": "pages/score/index",
  154. "iconPath": "static/images/tabbar/unselect/score-sj.png",
  155. "selectedIconPath": "static/images/tabbar/select/score-sj.png",
  156. "text": "成绩"
  157. }, {
  158. "pagePath": "pages/my/index",
  159. "iconPath": "static/images/tabbar/unselect/my-sj.png",
  160. "selectedIconPath": "static/images/tabbar/select/my-sj.png",
  161. "text": "我的"
  162. }]
  163. },
  164. "globalStyle": {
  165. "navigationBarTextStyle": "black",
  166. "navigationBarTitleText": "麦塔软件",
  167. "navigationBarBackgroundColor": "#fff"
  168. },
  169. "uniIdRouter": {}
  170. }