bodyScroll(event) {
event.preventDefault()
},
stopScroll () {
document.body.style.overflow = 'hidden'
document.addEventListener('touchmove', this.bodyScroll, false)
},startScroll () {
document.body.style.overflow = ''// 出现滚动条
document.removeEventListener('touchmove', this.bodyScroll, false)
},
网友评论