遮罩层 html
<view class="弹窗" @touchmove.stop.prevent="stopPrevent" >
<view class="遮罩层,可用tap触发关闭" @tap="Isxgg" @click.stop="stopPrevent"></view>
<scroll-view scroll-y="true" class="容器层">
<!-- 允许纵向滚动 设置scroll-y或者 scroll-x -->
弹窗内容
<!-- -->
</scroll-view>
</view>
js
export default {
data() {
return {
}
},
onLoad() {
},
methods: {
// 阻止冒泡关键代码
stopPrevent(){}
}
}