pages.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/launch/launch",
  5. "name": "launch",
  6. "meta": {
  7. "auth": false,
  8. "keepScroll": true
  9. },
  10. "style": {
  11. "navigationBarTitleText": "晋江市人才图谱",
  12. "navigationStyle": "custom",
  13. "navigationBarTextStyle": "white",
  14. "app-plus": {
  15. "bounce": "none"
  16. }
  17. }
  18. }, {
  19. "path": "pages/index/index",
  20. "name": "index",
  21. "meta": {
  22. "auth": true,
  23. "keepScroll": true
  24. },
  25. "style": {
  26. "navigationBarTitleText": "首页",
  27. "navigationStyle": "custom",
  28. "enablePullDownRefresh": true
  29. }
  30. }, {
  31. "path": "pages/kanban/kanban",
  32. "name": "kanban",
  33. "meta": {
  34. "auth": true,
  35. "keepScroll": true
  36. },
  37. "style": {
  38. "navigationBarTitleText": "人才看板",
  39. "navigationStyle": "custom",
  40. "enablePullDownRefresh": true
  41. }
  42. }, {
  43. "path": "pages/user/user",
  44. "name": "user",
  45. "meta": {
  46. "auth": true,
  47. "keepScroll": true
  48. },
  49. "style": {
  50. "navigationBarTitleText": "个人中心",
  51. "navigationStyle": "custom",
  52. "enablePullDownRefresh": true
  53. }
  54. }, {
  55. "path": "pages/user/footprint",
  56. "meta": {
  57. "auth": true
  58. },
  59. "style": {
  60. "navigationBarTitleText": "我的足迹"
  61. }
  62. }, {
  63. "path": "pages/user/company",
  64. "meta": {
  65. "auth": true
  66. },
  67. "style": {
  68. "navigationBarTitleText": "企业反馈"
  69. }
  70. },
  71. {
  72. "path": "pages/login/login",
  73. "meta": {
  74. "auth": false
  75. },
  76. "style": {
  77. "navigationBarTitleText": "登录"
  78. }
  79. },
  80. {
  81. "path": "pages/feedback/feedback",
  82. "meta": {
  83. "auth": true
  84. },
  85. "style": {
  86. "navigationBarTitleText": "意见反馈"
  87. }
  88. },
  89. {
  90. "path": "pages/talents/talents",
  91. "meta": {
  92. "auth": true
  93. },
  94. "style": {
  95. "navigationBarTitleText": "人才列表"
  96. }
  97. },
  98. {
  99. "path": "pages/talents/detail",
  100. "meta": {
  101. "auth": true
  102. },
  103. "style": {
  104. "navigationBarTitleText": "人才详情"
  105. }
  106. },
  107. {
  108. "path": "pages/search/search",
  109. "meta": {
  110. "auth": true
  111. },
  112. "style": {
  113. "navigationBarTitleText": "人才搜索"
  114. }
  115. }
  116. ],
  117. "tabBar": {
  118. "color": "#AEB4B4",
  119. "selectedColor": "#DD4250",
  120. "borderStyle": "black",
  121. "list": [
  122. {
  123. "pagePath": "pages/index/index",
  124. "iconPath": "/static/images/tab_home.png",
  125. "selectedIconPath": "/static/images/tab_home_s.png",
  126. "text": "首页"
  127. },
  128. {
  129. "pagePath": "pages/kanban/kanban",
  130. "iconPath": "/static/images/tab_kanban.png",
  131. "selectedIconPath": "/static/images/tab_kanban_s.png",
  132. "text": "看板"
  133. },
  134. {
  135. "pagePath": "pages/user/user",
  136. "iconPath": "/static/images/tab_user.png",
  137. "selectedIconPath": "/static/images/tab_user_s.png",
  138. "text": "我的"
  139. }
  140. ]
  141. },
  142. "globalStyle": {
  143. "navigationBarTextStyle": "white",
  144. "navigationBarTitleText": "",
  145. "navigationBarBackgroundColor": "#FFFFFF",
  146. "backgroundColor": "#F8F8F8",
  147. "navigationStyle": "default"
  148. },
  149. "easycom": {
  150. "autoscan": true,
  151. "custom": {
  152. "^u-(.*)": "@/components/uview-ui/components/u-$1/u-$1.vue"
  153. }
  154. }
  155. }