wuliu_sy/pages.json

100 lines
2.2 KiB
JSON
Raw Permalink Normal View History

2023-11-18 11:01:23 +08:00
{
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
2023-12-02 15:29:39 +08:00
{
2023-11-18 11:01:23 +08:00
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom",
2023-11-28 08:59:04 +08:00
2023-11-18 11:01:23 +08:00
"app-plus": {
"subNVues": [{
"id": "concat", // 唯一标识
"path": "pages/index/subnvue", // 页面路径
/*"type": "popup", */
"type": "popup",
"style": {
"position": "absolute",
"dock": "right",
"width": "100%",
"height": "100%",
"background": "transparent"
}
}]
}
}
},
{
"path": "pages/oaLogin/oaLogin",
"style": {
"navigationBarTitleText": "登录",
"app-plus": {
"titleNView": false,
"bounce": "none"
},
"navigationBarBackgroundColor": "#3274F9",
"navigationBarTextStyle": "white"
2023-12-02 15:29:39 +08:00
2023-11-18 11:01:23 +08:00
}
2023-12-02 15:29:39 +08:00
2023-11-18 11:01:23 +08:00
},
2023-12-02 15:29:39 +08:00
2023-11-18 11:01:23 +08:00
{
"path": "pages/index/detail",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
}
},
{
"path": "pages/submap/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
}
},
{
"path": "pages/psong/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
// "enablePullDownRefresh": true
}
},
{
"path": "pages/psong/detail",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
}
},
{
"path": "pages/sda/index",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
// "enablePullDownRefresh": true
}
},
{
"path": "pages/sda/detail",
"style": {
"navigationBarTitleText": "首页",
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"pageOrientation": "landscape",
"rpxCalcMaxDeviceWidth": 1280, // rpx 计算所支持的最大设备宽度,单位 px默认值为 960
"rpxCalcBaseDeviceWidth": 1280, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px默认值为 375
"rpxCalcIncludeWidth": 750 // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx默认值为 750
}
}