赞
踩
<template> <view :class="{'scrollLock':isStopBodyScroll}"> <u-modal :show="showModal"> <view class="slot-content"> <scroll-view scroll-y="true" > ...... </scroll-view> </view> </u-modal> </view> </template> <script> export default { data() { return { isStopBodyScroll: false, // 是否阻止页面滑动 } } </script> <style lang="scss" scoped> .scrollLock { width: 100%; position: fixed; } </style>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。