pages.json 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationStyle":"custom",// 隐藏系统导航栏
  10. "navigationBarTitleText": "首页"
  11. }
  12. }
  13. ,{
  14. "path" : "pages/mycode/mycode",
  15. "style" :
  16. {
  17. "navigationBarTitleText": "退役军人码"
  18. }
  19. }
  20. ,
  21. {
  22. "path" : "pages/authentication/authentication",
  23. "style" :
  24. {
  25. "navigationBarTitleText": "退役军人职业教育码申请"
  26. }
  27. },
  28. {
  29. "path": "pages/phoneLogin/phoneLogin",
  30. "style": {
  31. "navigationBarTitleText": "登录"
  32. }
  33. },
  34. {
  35. "path" : "pages/bannerDetails/bannerDetails",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "详情页"
  39. }
  40. }
  41. ,{
  42. "path" : "pages/policyNews/policyNews",
  43. "style" :
  44. {
  45. "navigationBarTitleText": "政策资讯"
  46. }
  47. }
  48. ,{
  49. "path" : "pages/policyNewsDetails/policyNewsDetails",
  50. "style" :
  51. {
  52. "navigationBarTitleText": "文章详情"
  53. }
  54. }
  55. ,{
  56. "path" : "pages/newsDetails/newsDetails",
  57. "style" :
  58. {
  59. "navigationBarTitleText": "文章详情"
  60. }
  61. },
  62. {
  63. "path": "pages/login/code",
  64. "style": {
  65. "navigationBarTitleText": "验证码"
  66. }
  67. },
  68. {
  69. "path" : "pages/mine/mine",
  70. "style" :
  71. {
  72. "navigationBarTitleText": "个人中心",
  73. "navigationStyle": "custom"
  74. }
  75. },
  76. {
  77. "path" : "pages/center/center",
  78. "style" :
  79. {
  80. "navigationBarTitleText": "中心",
  81. "enablePullDownRefresh": false
  82. }
  83. }
  84. ,{
  85. "path" : "pages/privacyPolicy/privacyPolicy",
  86. "style" :
  87. {
  88. "navigationBarTitleText": "隐私政策"
  89. }
  90. }
  91. ,{
  92. "path" : "pages/schools/schools",
  93. "style" :
  94. {
  95. "navigationBarTitleText": "学院列表"
  96. }
  97. }
  98. ,{
  99. "path" : "pages/skillsTraining/skillsTraining",
  100. "style" :
  101. {
  102. "navigationBarTitleText": "技能培训"
  103. }
  104. }
  105. ,{
  106. "path" : "pages/basicTraining/basicTraining",
  107. "style" :
  108. {
  109. "navigationBarTitleText": "适应性培训"
  110. }
  111. }
  112. ,{
  113. "path" : "pages/basicTraining/myBasicTraining/myBasicTraining",
  114. "style" :
  115. {
  116. "navigationBarTitleText": "我的适应性培训"
  117. }
  118. }
  119. ,{
  120. "path" : "pages/basicTraining/basicTrainingDetails/basicTrainingDetails",
  121. "style" :
  122. {
  123. "navigationBarTitleText": "在线上课"
  124. }
  125. }
  126. ,{
  127. "path" : "pages/upgrade/upgrade",
  128. "style" :
  129. {
  130. "navigationBarTitleText": "学历提升"
  131. }
  132. }
  133. ,{
  134. "path" : "pages/inbuild/inbuild",
  135. "style" :
  136. {
  137. "navigationBarTitleText": "建设中"
  138. }
  139. }
  140. ],
  141. "globalStyle": {
  142. "navigationBarTextStyle": "black",
  143. "navigationBarTitleText": "uni-app",
  144. "navigationBarBackgroundColor": "#F8F8F8",
  145. "backgroundColor": "#F8F8F8"
  146. },
  147. "tabBar": {
  148. "color": "#909399",
  149. "selectedColor": "#303133",
  150. "borderStyle": "black",
  151. "backgroundColor": "#ffffff",
  152. "list": [{
  153. "pagePath": "pages/index/index",
  154. "iconPath": "static/icons/index-gray.png",
  155. "selectedIconPath": "static/icons/index.png",
  156. "text": "首页"
  157. }, {
  158. "pagePath": "pages/mycode/mycode",
  159. "iconPath": "static/icons/code-gray.png",
  160. "selectedIconPath": "static/icons/code.png",
  161. "text": "退役军人码"
  162. }, {
  163. "pagePath": "pages/mine/mine",
  164. "iconPath": "static/icons/mine-gray.png",
  165. "selectedIconPath": "static/icons/mine.png",
  166. "text": "我"
  167. }]
  168. }
  169. }