//父组件页面
onReachBottom() {
uni.$emit('onReachBottom');
},
//子组件
mounted() {
uni.$on('onReachBottom', (data) => {
//这里写你的触底逻辑
});
},
//父组件页面
onReachBottom() {
uni.$emit('onReachBottom');
},
//子组件
mounted() {
uni.$on('onReachBottom', (data) => {
//这里写你的触底逻辑
});
},