bodyScroll(event) {
event.preventDefault()
},
show(){
// 禁用触摸滚动页面
document.addEventListener('touchmove', this.bodyScroll, {passive: false});
},
close(){
// 恢复触摸滚动页面
document.removeEventListener('touchmove', this.bodyScroll, {passive: false});
},