<template>
<div>
<wx-scroll-view ref="wxscroll" :scroll-into-view="tt" style="height:300px" @scrolltolower="scrolltolower(false)" :scroll-top="scrollTop"
@refresherrefresh="onRefresh" :refresher-enabled="false" :refresher-triggered="refreshing" scroll-y="true"
class="scroll-Y" lower-threshold="30">
{{lists}}
<div style="width:100%;height:150px;" v-for="vo in lists">
{{vo}}
</div>
</wx-scroll-view>
</div>
</template>
<script>
export default {
data(){
return{
lists:[1,2,3,4,5,6],
};
},
methods:{
onRefresh(){
},
scrolltolower(){
console.log('进来了');
this.lists.push(10);
},
}
}
</script>
如代码所示 上拉加载的时候,滚动条又会跑到最上面,这只是一个分页的功能,但是只要给原循环数据添加数据的时候滚动条就会跑到最上面。
@社区技术运营专员-Jahozheng
下拉刷新吗,refresher-enabled需要配置为true