页面滚动了。但是弹出层确实固定在一个位置不动,查了一下position:fixed.所以导致上面的菜单和下面的选项分家了。
解决办法是:wx.setPageStyle
// 打开弹窗.禁止页面滚动
popupShow(e:any) {
wx.setPageStyle({
style: {
overflow: 'hidden'
}
})
},
// 关闭弹窗,允许页面滚动
popupClose(e:any) {
wx.setPageStyle({
style: {
overflow: ''
}
})
},