pages.json 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
  6. "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
  7. "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue",
  8. "^ut-(.*)": "@/src/components/ut-$1/ut-$1.vue",
  9. "^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue"
  10. }
  11. },
  12. "pages": [
  13. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  14. {
  15. "path": "pages/index/index",
  16. "style": {
  17. "navigationBarTitleText": "首页"
  18. }
  19. },
  20. {
  21. "path": "pages/login/login",
  22. "style": {
  23. "navigationBarTitleText": "用户登录"
  24. }
  25. },
  26. {
  27. "path": "pages/plant/index",
  28. "style": {
  29. "navigationBarTitleText": "种植端"
  30. }
  31. },
  32. {
  33. "path": "pages/production/index",
  34. "style": {
  35. "navigationBarTitleText": "生产端"
  36. }
  37. }
  38. ],
  39. "subPackages": [
  40. {
  41. // 基地分包
  42. "root": "plant/base",
  43. "pages": [
  44. {
  45. "path": "base-list/index",
  46. "style": {
  47. "navigationBarTitleText": "基地列表"
  48. }
  49. },
  50. {
  51. "path": "base-detail/index",
  52. "style": {
  53. "navigationBarTitleText": "基地详情"
  54. }
  55. },
  56. {
  57. "path": "base-edit/index",
  58. "style": {
  59. "navigationBarTitleText": "编辑基地"
  60. }
  61. },
  62. {
  63. "path": "base-map/index",
  64. "style": {
  65. "navigationBarTitleText": "基地地图"
  66. }
  67. },
  68. // GAP基地信息
  69. {
  70. "path": "gap-base-info/index",
  71. "style": {
  72. "navigationBarTitleText": "GAP基地信息"
  73. }
  74. },
  75. // 添加Gap基地信息添加
  76. {
  77. "path": "gap-base-info-edit/index",
  78. "style": {
  79. "navigationBarTitleText": "添加GAP基地信息"
  80. }
  81. }
  82. ]
  83. },
  84. // 主营物种
  85. {
  86. "root": "plant/species",
  87. "pages": [
  88. {
  89. "path": "config/index",
  90. "style": {
  91. "navigationBarTitleText": "配置主营物种"
  92. }
  93. }
  94. ]
  95. },
  96. {
  97. "root": "tools",
  98. "pages": [
  99. {
  100. "path": "map-draw-area/index",
  101. "style": {
  102. "navigationBarTitleText": "地图绘制面积图",
  103. "disableScroll": true,
  104. "enablePullDownRefresh": false,
  105. "navigationStyle": "default"
  106. }
  107. },
  108. {
  109. "path": "map-gd/index",
  110. "style": {
  111. "navigationBarTitleText": "地图绘制面积图",
  112. "disableScroll": true,
  113. "enablePullDownRefresh": false,
  114. "navigationStyle": "default"
  115. }
  116. },
  117. // 选择企业人员
  118. {
  119. "path": "select-cpy-member/index",
  120. "style": {
  121. "navigationBarTitleText": "选择企业成员"
  122. }
  123. }
  124. ]
  125. }
  126. ],
  127. "tabBar": {
  128. "custom": true,
  129. "list": [
  130. {
  131. "pagePath": "pages/index/index"
  132. },
  133. {
  134. "pagePath": "pages/plant/index"
  135. },
  136. {
  137. "pagePath": "pages/production/index"
  138. }
  139. ]
  140. },
  141. "globalStyle": {
  142. "navigationStyle": "custom",
  143. "navigationBarTextStyle": "black",
  144. "navigationBarTitleText": "uni-app",
  145. "navigationBarBackgroundColor": "#F8F8F8",
  146. "backgroundColor": "#F8F8F8",
  147. "rpxCalcMaxDeviceWidth": 1920,
  148. "rpxCalcBaseDeviceWidth": 375,
  149. "rpxCalcIncludeWidth": 750
  150. }
  151. }