vant-popup在有滚动条的页面,弹出遮罩层时页面会滚动到顶部,求助怎么解决?
<template>
<div class="page">
<van-form validate-first
@submit="onSubmit">
<div class="box">
顶部
</div>
<van-cell is-link
@click="showPopup">展示弹出层</van-cell>
<van-popup v-model="show"
closeable
position="bottom"
:style="{ height: '30%' }"
get-container="body">内容</van-popup>
<!-- 提交 -->
<div style="margin: 16px;">
<van-button round
block
type="info"
native-type="submit">
提交
</van-button>
</div>
</van-form>
</div>
</template>
<script>
import { Form, Popup, Button, Cell } from 'vant'
export default {
components: {
[Form.name]: Form,
[Popup.name]: Popup,
[Button.name]: Button,
[Cell.name]: Cell
},
data () {
return {
show: false
}
},
methods: {
onSubmit (values) {
console.log('submit', values)
},
showPopup () {
this.show = true
}
}
}
</script>
<style lang="scss" scoped>
.box{
height: 1500px;
}
</style>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
先获取当前滚动条位置
getScrollTop()
, 隐藏遮罩的时候window.scrollTo(0, getScrollTop())
。