{
|
"easycom": {
|
//uview-ui
|
"^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
|
},
|
"pages": [ //pages数组中第一项表示应用启动页
|
{
|
"path": "src/pages/Login/index",
|
"style": {
|
"navigationStyle": "custom", // 隐藏系统导航栏
|
"navigationBarTitleText": "",
|
"navigationBarBackgroundColor": "#fff"
|
}
|
},
|
// {
|
// "path": "src/pages/Login/Home",
|
// "style": {
|
// "navigationStyle": "custom", // 隐藏系统导航栏
|
// "navigationBarTitleText": "",
|
// "navigationBarBackgroundColor": "#fff"
|
// }
|
// },
|
{
|
"path": "src/pages/Home/index",
|
"style": {
|
// "navigationStyle": "custom", // 隐藏系统导航栏
|
"navigationBarTitleText": "首页",
|
"navigationBarBackgroundColor": "#fff",
|
"enablePullDownRefresh": false
|
}
|
},
|
{
|
"path": "src/pages/Home/searchBlue",
|
"style": {
|
// "navigationStyle": "custom", // 隐藏系统导航栏
|
"navigationBarTitleText": "蓝牙",
|
"navigationBarBackgroundColor": "#fff",
|
"enablePullDownRefresh": false
|
}
|
},
|
{
|
"path": "src/pages/PutIn/jimo/jimo",
|
"style": {
|
// "navigationStyle": "custom", // 隐藏系统导航栏
|
"navigationBarTitleText": "入库查询",
|
"navigationBarBackgroundColor": "#fff",
|
"enablePullDownRefresh": true
|
}
|
},
|
{
|
"path": "src/pages/my/index",
|
"style": {
|
// "navigationStyle": "custom", // 隐藏系统导航栏
|
"navigationBarTitleText": "我的",
|
"navigationBarBackgroundColor": "#fff",
|
"enablePullDownRefresh": false
|
}
|
}, {
|
"path": "src/pages/PutIn/jimo/print",
|
"style": {
|
"navigationBarTitleText": "组盘",
|
"navigationBarBackgroundColor": "#fff",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "src/pages/appliance/appliance",
|
"style": {
|
"navigationBarTitleText": "",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "src/pages/PutOut/task/task",
|
"style": {
|
"navigationBarTitleText": "我的任务-搬运",
|
"enablePullDownRefresh": true
|
}
|
|
}, {
|
"path": "src/pages/PutOut/task/details",
|
"style": {
|
"navigationBarTitleText": "我的任务-搬运",
|
"enablePullDownRefresh": false,
|
"app-plus": {
|
"scrollIndicator": "none" //当前页面不显示滚动条
|
}
|
|
}
|
|
}, {
|
"path": "src/pages/PutOut/manual/manual",
|
"style": {
|
"navigationBarTitleText": "非计划出库",
|
"enablePullDownRefresh": true
|
}
|
|
}, {
|
"path": "src/pages/PutOut/manual/add_manual",
|
"style": {
|
"navigationBarTitleText": "非计划出库-新建",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "src/pages/PutOut/manual/details",
|
"style": {
|
"navigationBarTitleText": "非计划出库-详情",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "src/pages/PutOut/plan/plan",
|
"style": {
|
"navigationBarTitleText": "计划出库",
|
"enablePullDownRefresh": true
|
}
|
|
}, {
|
"path": "src/pages/PutOut/plan/details",
|
"style": {
|
"navigationBarTitleText": "详情",
|
"enablePullDownRefresh": false
|
}
|
|
}, {
|
"path": "src/pages/PutOut/plan/delivery",
|
"style": {
|
"navigationBarTitleText": "出库",
|
"enablePullDownRefresh": true
|
}
|
|
}
|
,{
|
"path" : "src/pages/PutOut/operation/operation",
|
"style" :
|
{
|
"navigationBarTitleText": "人工出库",
|
"enablePullDownRefresh": true
|
}
|
|
}
|
],
|
"tabBar": {
|
"color": "#595656",
|
"selectedColor": "#02af74",
|
"borderStyle": "#eaeaea",
|
"backgroundColor": "#fff",
|
"list": [{
|
"pagePath": "src/pages/Home/index",
|
// "iconPath": "xx.png",
|
// "selectedIconPath": "yy.png",
|
"text": "首页"
|
},
|
{
|
"pagePath": "src/pages/my/index",
|
// "iconPath": "aa.png",
|
// "selectedIconPath": "bb.png",
|
"text": "我的"
|
}
|
]
|
|
},
|
"globalStyle": {
|
"navigationBarTextStyle": "black",
|
"navigationBarTitleText": "uni-app",
|
"navigationBarBackgroundColor": "#fff",
|
"backgroundColor": "#fff"
|
},
|
// "globalStyle": {
|
// "navigationBarTextStyle": "black",
|
// "navigationBarTitleText": "",
|
// "navigationBarBackgroundColor": "#F8F8F8",
|
// "enablePullDownRefresh": true,
|
// "backgroundColor": "#F8F8F8",
|
// "app-plus": {
|
// "titleNView": false
|
// }
|
// },
|
"condition" : { //模式配置,仅开发期间生效
|
"current": 0, //当前激活的模式(list 的索引项)
|
"list": [
|
{
|
"name": "", //模式名称
|
"path": "", //启动页面,必选
|
"query": "" //启动参数,在页面的onLoad函数里面得到
|
}
|
]
|
}
|
}
|