pages.json 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uni_modules/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. "navigationBarTitleText": "爱就业咨询服务平台",
  10. "enablePullDownRefresh": false
  11. }
  12. },
  13. {
  14. "path": "components/u-avatar-cropper/u-avatar-cropper",
  15. "style": {
  16. "navigationBarTitleText": "图片裁剪",
  17. "navigationBarBackgroundColor": "#000000"
  18. }
  19. },
  20. {
  21. "path": "pages/statement/index/index",
  22. "style": {
  23. "navigationBarTitleText": "结算广场"
  24. }
  25. },
  26. {
  27. "path": "pages/statement/packages/index",
  28. "style": {
  29. "navigationBarTitleText": "结算广场",
  30. "enablePullDownRefresh": true
  31. }
  32. },
  33. {
  34. "path": "pages/user/login",
  35. "style": {
  36. "navigationBarTitleText": "用户登录",
  37. "enablePullDownRefresh": false
  38. }
  39. },
  40. {
  41. "path": "pages/statement/auth/index",
  42. "style": {
  43. "navigationBarTitleText": "实名认证",
  44. "enablePullDownRefresh": false
  45. }
  46. },
  47. {
  48. "path": "pages/statement/company/index",
  49. "style": {
  50. "navigationBarTitleText": "关联企业",
  51. "enablePullDownRefresh": true
  52. }
  53. },
  54. {
  55. "path": "pages/statement/company/search",
  56. "style": {
  57. "navigationBarTitleText": "搜索企业",
  58. "enablePullDownRefresh": false
  59. }
  60. },
  61. {
  62. "path": "pages/user/info",
  63. "style": {
  64. "navigationBarTitleText": "个人信息",
  65. "enablePullDownRefresh": false
  66. }
  67. },
  68. {
  69. "path": "pages/job/full_time",
  70. "style": {
  71. "navigationBarTitleText": "找工作",
  72. "enablePullDownRefresh": false
  73. }
  74. },
  75. {
  76. "path": "pages/job/part_time",
  77. "style": {
  78. "navigationBarTitleText": "兼职零工",
  79. "enablePullDownRefresh": false
  80. }
  81. },
  82. {
  83. "path": "pages/serve/index",
  84. "style": {
  85. "navigationBarTitleText": "更多服务",
  86. "enablePullDownRefresh": false
  87. }
  88. },
  89. {
  90. "path": "pages/user/index",
  91. "style": {
  92. "navigationBarTitleText": "我的",
  93. "enablePullDownRefresh": false
  94. }
  95. },
  96. {
  97. "path": "pages/job/detail",
  98. "style": {
  99. "navigationBarTitleText": "工作详情"
  100. }
  101. },
  102. {
  103. "path": "pages/job/company",
  104. "style": {
  105. "navigationBarTitleText": "公司信息"
  106. }
  107. },
  108. {
  109. "path": "pages/other/webview",
  110. "style": {
  111. "navigationBarTitleText": "政策资讯"
  112. }
  113. },
  114. {
  115. "path": "pages/user/switch",
  116. "style": {
  117. "navigationBarTitleText": ""
  118. }
  119. },
  120. {
  121. "path": "pages/user/resume/index",
  122. "style": {
  123. "navigationBarTitleText": "我的简历"
  124. }
  125. },
  126. {
  127. "path": "pages/user/resume/edit",
  128. "style": {
  129. "navigationBarTitleText": "个人信息"
  130. }
  131. },
  132. {
  133. "path" : "pages/job/position/classification",
  134. "style" :
  135. {
  136. "navigationBarTitleText" : "选择职位"
  137. }
  138. },
  139. {
  140. "path" : "pages/job/position/city",
  141. "style" :
  142. {
  143. "navigationBarTitleText" : "选择城市"
  144. }
  145. },
  146. {
  147. "path" : "pages/user/enterprise/index",
  148. "style" :
  149. {
  150. "navigationBarTitleText" : "企业认证"
  151. }
  152. },
  153. {
  154. "path" : "pages/job/position/manage/list",
  155. "style" :
  156. {
  157. "navigationBarTitleText" : "职位管理"
  158. }
  159. }
  160. ],
  161. "tabBar": {
  162. "color": "#7A7E83",
  163. "selectedColor": "#4581fb",
  164. "borderStyle": "black",
  165. "backgroundColor": "#F8F8F8",
  166. "list": [{
  167. "pagePath": "pages/index/index",
  168. "iconPath": "static/tab/sy.png",
  169. "selectedIconPath": "static/tab/sy_s.png",
  170. "text": "首页"
  171. },
  172. {
  173. "pagePath": "pages/serve/index",
  174. "iconPath": "static/tab/serve.png",
  175. "selectedIconPath": "static/tab/serve_s.png",
  176. "text": "更多服务"
  177. },
  178. {
  179. "pagePath": "pages/user/index",
  180. "iconPath": "static/tab/my.png",
  181. "selectedIconPath": "static/tab/my_s.png",
  182. "text": "我的"
  183. }
  184. ]
  185. },
  186. "globalStyle": {
  187. "navigationBarTextStyle": "black",
  188. "navigationBarTitleText": "爱就业咨询服务平台",
  189. "navigationBarBackgroundColor": "#f1f1f1"
  190. }
  191. }