在具体页面的style中配置
"style":{
"navigationStyle":"custom"
}
或者
"style":{
"app-plus":{
"titleNView":false
}
}
以上设置会导致原生导航栏不显示,然后电量等直接显示在页面部分,需要把状态栏的位置从前景部分让出来,可以写一个view,高度设置为:
<view class="status_bar">
<!-- 这里是状态栏 -->
</view>
...
<style>
.status_bar{
height:var(--status-bar-height);
width:100%;
}
</style>