使用Mpvue 使用 scroll-view 记录以及 页面设置弹窗后 页面滚动问题

1、scroll-view 使用

<scroll-view  scroll-y="true"
                      class="msg-list"
                      @scrolltolower="scrolltolower"
                      @scroll="scroll"
        >
</scroll-view>
methods: {
    scrolltolower(){
      console.log(7)
    },
    scroll(e) {
      console.log(6)
      console.log(e)
    }
}

官方组件说明地址

2、弹窗后页面滚动的问题

将其父页面 (即上层页面设置成固定定位 )

position: fixed;

 

posted @ 2019-05-07 15:58  yinder  阅读(525)  评论(0编辑  收藏  举报