因为在pages.json中用"titleNView": false关闭了标题栏,在页面中使用web-view打开网页就会覆盖手机的状态栏,有什么办法可以不让它覆盖吗?页面中的代码如下:
<template>
<view>
<view>
<web-view :webview-styles="webviewStyles" src="https://www.baidu.com"></web-view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
//iStatusBarHeight:0,
webviewStyles:{
progress: {
color: '#ff3333'
}
}
}
},
methods: {
}
}
</script>
今天回复我了吗
写在哪里,APP中写不了把
2019-12-27 10:51