弹窗通常都是这样
.custom-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
然后显示弹窗之后,滑动底部的内容却可以滑动,
解决办法,显示弹窗的时候禁止滚动,隐藏弹窗恢复滚动即可
// 禁止滚动
disEnableScroll(e:any) {
wx.setPageStyle({
style: {
overflow: 'hidden'
}
})
},
// 恢复滚动
enableScroll(e:any) {
wx.setPageStyle({
style: {
overflow: ''
}
})
},