彈窗通常都是這樣
.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: ''
}
})
},