123456789101112131415161718192021222324252627 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "本草书院有声图书"
- }
- },
- {
- "path": "pages/book/book",
- "style": {
- "navigationBarTitleText": "本草书院有声图书"
- }
- }
- ],
- "globalStyle": {
- "rpxCalcMaxDeviceWidth": 3840, // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
- "rpxCalcBaseDeviceWidth": 375, // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375
- "rpxCalcIncludeWidth": 750, // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750
- "navigationBarTextStyle": "black",
- "navigationStyle": "custom",
- "pageOrientation": "landscape",
- "app-plus": {
- "scrollIndicator": "none"
- }
- }
- }
|