此代码实现类似浏览器,底部ViewBar 是一个菜单栏。
在h5 浏览器下显示正常,我通过样式控制,上面是web-view,下面是菜单栏。
但是在 app调试或真机上,无论如何,web-view都占满全屏,怎么调样式都没用,都无效
即使把 web-view的style设为display:none,也不隐藏。
<template>
<view class="content">
<!-- status -->
<view class="status" ></view>
<view class="main" >
<web-view
class="view-bar"
:src="src"
:webview-styles="webviewStyles"
@touchmove="showViewBar()"
></web-view>
</view>
<SetBar @refresh='refresh'></SetBar>
<ViewBar v-show="ifShowViewBar"></ViewBar>
</view>
</template>