把换成
记得样式
<template>
<scroll-view class="free-content" scroll-y="true" @scrolltolower="scrollBottonListener"
:style="{background: backgroundColor}">
<!-- 布局内容 -->
</scroll-view>
</template>
<script>
export default {
data() {
return {
backgroundColor: '#146762'
}
},
methods: {
scrollBottonListener(eve){//监听是否滑动到最底部了
uni.showToast({
icon:'none',
title:'到底了'
})
}
}
}
</script>
<style>
.free-content {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
page {
width: 100%;
height: 100%;
}
</style>
如果有更好的方案
网友评论