在主页面中添加事件
onReachBottom() {
uni.$emit('onReachBottom');
},
在子组件中添加监听触底事件
mounted() {
var that=this;
uni.$on('onReachBottom', function(data) {
console.log('onReachBottom');
that.getmore();
});
},