https://developers.weixin.qq.com/miniprogram/dev/component/web-view.html
cover-view 放在web-view 里面和同级都不行, 始终被web-view覆盖
<template>
<view class="container">
<cover-view
class="back-box"
@click="goBack"
style="position: fixed;
bottom: 220px;
left: 50%;
z-index: 9999;
transform: translateX(-50%);
background-color: rgba(255, 255, 255, 1);
border-radius: 30px;
padding: 8px 12px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);">
<cover-image
src="/static/index/back-xcx.png"
style="width: 20px;height: 20px;margin-right: 6px;"
></cover-image>
<cover-view
style="color: #000;font-size: 13px;font-weight: 700;">返回</cover-view>
</cover-view>
<web-view :src="webUrl"></web-view>
</view>
</template>
以文档为准。