{
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
{
|
"path": "pages/index/index",
|
"style": {
|
"navigationBarTitleText": "PDA首页"
|
}
|
}
|
,
|
{
|
"path" : "pages/login/login",
|
"style": {
|
"navigationBarBackgroundColor":"#ffffff",
|
"navigationBarTextStyle":"black",
|
"navigationBarTitleText": "登录"
|
}
|
},
|
{
|
"path" : "pages/basics/combPro",
|
"style" :
|
{
|
"navigationBarTitleText": "入库单组托",
|
"enablePullDownRefresh": false
|
}
|
|
}
|
,{
|
"path" : "pages/basics/comb",
|
"style" :
|
{
|
"navigationBarTitleText": "组托",
|
"enablePullDownRefresh": false
|
}
|
|
}
|
,{
|
"path" : "pages/basics/stockCheck",
|
"style" :
|
{
|
"navigationBarTitleText": "库存盘点",
|
"enablePullDownRefresh": false
|
}
|
|
}
|
,{
|
"path" : "pages/basics/stockQuery",
|
"style" :
|
{
|
"navigationBarTitleText": "库存查询",
|
"enablePullDownRefresh": false
|
}
|
|
}
|
],
|
"globalStyle": {
|
"navigationBarTextStyle": "white",
|
"navigationBarTitleText": "PDA终端",
|
"navigationBarBackgroundColor": "#F5C11D"
|
},
|
"condition" : { //模式配置,仅开发期间生效
|
"current": 0, //当前激活的模式(list 的索引项)
|
"list": [
|
{
|
"name": "", //模式名称
|
"path": "", //启动页面,必选
|
"query": "" //启动参数,在页面的onLoad函数里面得到
|
}
|
]
|
}
|
}
|