vue中

export const stopBodyScroll = value => {
let body = document.body;
if (value) {
body.style.position = 'fixed';
body.style.width = '100%';
body.style.height = '100%';
}
else {
body.style.position = 'static';
body.style.height = 'auto';
}
}

value代表着弹窗是否显示

​参考文章​