app默认是竖屏,有个页面是横屏,元素就一个webview,在ios环境顶部会多一块,怎么都去不掉
<template>
<web-view :src="url" ref="webview"></web-view>
</template>
<script>
export default {
data() {
return {
url: ''
};
},
onUnload() {
// #ifdef APP-PLUS
plus.screen.lockOrientation("portrait-primary");
// #endif
},
onLoad(e) {
// #ifdef APP-PLUS
plus.screen.lockOrientation("landscape-primary");
// #endif
this.url = "https://www.baidu.com"
}
}
</script>
格克 (作者)
这个可以解决,但感觉还是官方的bug
2024-03-11 11:15