pad-app/pages.json

45 lines
1.0 KiB
JSON
Raw Normal View History

2023-07-03 17:49:29 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
2023-07-05 10:56:11 +08:00
},
{
"path": "pages/discharge/index",
"style": {
"navigationBarTitleText": "卸船指令"
}
},
{
"path": "pages/shipWork/index",
"style": {
"navigationBarTitleText": "船舶作业"
}
2023-07-03 17:49:29 +08:00
}
],
"tabBar": {
"color": "#9A9A9A",
"selectedColor": "#000000",
"list": []
},
"globalStyle": {
"backgroundTextStyle": "light",
"navigationBarBackgroundColor": "#0052A4",
"navigationBarTitleText": "港口Ipad",
"navigationBarTextStyle": "white"
},
"uniIdRouter": {},
"condition": { //模式配置,仅开发期间生效
"current": 0, //当前激活的模式(list 的索引项)
"list": [{
"name": "", //模式名称
"path": "", //启动页面,必选
"query": "" //启动参数在页面的onLoad函数里面得到
}]
}
}