| { | 
|     "easycom": { | 
|         "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue" | 
|     }, | 
|     "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages | 
|         { | 
|             "path": "pages/index/index", | 
|             "style": { | 
|                 "navigationBarTitleText": "首页" | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/home/home", | 
|             "style": { | 
|                 "navigationBarTitleText": "我的" | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/login/login", | 
|             "style": { | 
|                 "navigationBarTitleText": "登录" | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/basic/cachePoint", | 
|             "style": { | 
|                 "navigationBarTitleText": "释放缓存货位", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/materielGroup/inboundOrder", | 
|             "style": { | 
|                 "navigationBarTitleText": "入库订单", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/materielGroup/OutboundOrder", | 
|             "style": { | 
|                 "navigationBarTitleText": "出库订单", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/task/cancelTask", | 
|             "style": { | 
|                 "navigationBarTitleText": "取消任务", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/materielGroup/Inorderboxing", | 
|             "style": { | 
|                 "navigationBarTitleText": "出库明细", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/materielGroup/Outorderboxing", | 
|             "style": { | 
|                 "navigationBarTitleText": "入库明细", | 
|                 "enablePullDownRefresh": true | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/materielGroup/OutOrderDetail", | 
|             "style": { | 
|                 "navigationBarTitleText": "入库单据明细操作", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|         { | 
|             "path": "pages/task/AgvTask", | 
|             "style": { | 
|                 "navigationBarTitleText": "Agv叫料", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         }, | 
|          | 
|         //设置 | 
|         { | 
|             "path": "pages/index/settings", | 
|             "style": { | 
|                 "navigationBarTitleText": "设置", | 
|                 "enablePullDownRefresh": false | 
|             } | 
|         } | 
|          | 
|          | 
|     ], | 
|     "globalStyle": { | 
|         "navigationBarTextStyle": "black", | 
|         "navigationBarTitleText": "uView", | 
|         "navigationBarBackgroundColor": "#F8F8F8", | 
|         "backgroundColor": "#F8F8F8" | 
|     }, | 
|     "tabBar": { | 
|         "color": "#909399", | 
|         "selectedColor": "#303133", | 
|         "borderStyle": "black", | 
|         "backgroundColor": "#ffffff", | 
|         "list": [{ | 
|             "pagePath": "pages/index/index", | 
|             "iconPath": "static/index.png", | 
|             "selectedIconPath": "static/index-selected.png", | 
|             "text": "首页" | 
|         }, { | 
|             "pagePath": "pages/home/home", | 
|             "iconPath": "static/center.png", | 
|             "selectedIconPath": "static/center-selected.png", | 
|             "text": "我" | 
|         }] | 
|     } | 
| } |