小程序
小游戏
企业微信
微信支付
扫描小程序码分享
遇到一个情况,需要同时使用web-view和cover-view,最后效果在ios是正常的,但是在安卓,第一次渲染没有问题,但是后续使用v-if隐藏了cover-view之后,再使用v-if显示cover-view就显示不出来了,状态是有改变的,但是就是界面不显示,被web-view给覆盖掉了
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
参考 ios可以显示的话麻烦提供下代码片段看下
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<view class="page relative">
<main class="footer-wrapper">
<web-view :src="webViewUrl"> </web-view>
<cover-view class="card-wrapper" v-if="show">
<post-card ref="postCardRef"></post-card>
</cover-view>
</main>
</view>
onLoad(){
this.init()
}
methods:{
init() {
setTimeout(() => {
this.show = true
this.$refs.postCardRef.businessCardVisible()
}, 20000)
}, 3000)
webview在最高吧
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
参考 ios可以显示的话麻烦提供下代码片段看下
<view class="page relative">
<main class="footer-wrapper">
<web-view :src="webViewUrl"> </web-view>
<cover-view class="card-wrapper" v-if="show">
<post-card ref="postCardRef"></post-card>
</cover-view>
</main>
</view>
onLoad(){
this.init()
}
methods:{
init() {
setTimeout(() => {
this.show = true
setTimeout(() => {
this.$refs.postCardRef.businessCardVisible()
}, 20000)
}, 3000)
}
webview在最高吧