| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue",
- "^ut-(.*)": "@/src/components/ut-$1/ut-$1.vue",
- "^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)": "z-paging/components/z-paging$1/z-paging$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "用户登录"
- }
- },
- {
- "path": "pages/plant/index",
- "style": {
- "navigationBarTitleText": "种植端"
- }
- },
- {
- "path": "pages/production/index",
- "style": {
- "navigationBarTitleText": "生产端"
- }
- }
- ],
- "subPackages": [
- {
- // 基地分包
- "root": "plant/base",
- "pages": [
- {
- "path": "base-list/index",
- "style": {
- "navigationBarTitleText": "基地列表"
- }
- },
- {
- "path": "base-detail/index",
- "style": {
- "navigationBarTitleText": "基地详情"
- }
- },
- {
- "path": "base-edit/index",
- "style": {
- "navigationBarTitleText": "编辑基地"
- }
- },
- {
- "path": "base-map/index",
- "style": {
- "navigationBarTitleText": "基地地图"
- }
- },
- // GAP基地信息
- {
- "path": "gap-base-info/index",
- "style": {
- "navigationBarTitleText": "GAP基地信息"
- }
- },
- // 添加Gap基地信息添加
- {
- "path": "gap-base-info-edit/index",
- "style": {
- "navigationBarTitleText": "添加GAP基地信息"
- }
- }
- ]
- },
- // 主营物种
- {
- "root": "plant/species",
- "pages": [
- {
- "path": "config/index",
- "style": {
- "navigationBarTitleText": "配置主营物种"
- }
- }
- ]
- },
- {
- "root": "tools",
- "pages": [
- {
- "path": "map-draw-area/index",
- "style": {
- "navigationBarTitleText": "地图绘制面积图",
- "disableScroll": true,
- "enablePullDownRefresh": false,
- "navigationStyle": "default"
- }
- },
- {
- "path": "map-gd/index",
- "style": {
- "navigationBarTitleText": "地图绘制面积图",
- "disableScroll": true,
- "enablePullDownRefresh": false,
- "navigationStyle": "default"
- }
- },
- // 选择企业人员
- {
- "path": "select-cpy-member/index",
- "style": {
- "navigationBarTitleText": "选择企业成员"
- }
- }
- ]
- }
- ],
- "tabBar": {
- "custom": true,
- "list": [
- {
- "pagePath": "pages/index/index"
- },
- {
- "pagePath": "pages/plant/index"
- },
- {
- "pagePath": "pages/production/index"
- }
- ]
- },
- "globalStyle": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "rpxCalcMaxDeviceWidth": 1920,
- "rpxCalcBaseDeviceWidth": 375,
- "rpxCalcIncludeWidth": 750
- }
- }
|