1.page.json添加以下代码
	"onReachBottonDistance":50  这是文档链接 页面 | uni-app官网 (dcloud.net.cn)
 2. 页面中写以下代码
2. 页面中写以下代码
 
	onReachBottom(e) {
			console.log("举例底部50px就触发");
		},3.完整代码
a.我是使用uview的加载按钮
 
1.page.json
	"onReachBottonDistance":50  2.页面添加以下代码
	<u-loading-icon text="加载中" textSize="15" size="15" :show="show"></u-loading-icon>
模板上写   show: false,
onReachBottom(e) {
				this.show = true
		},










