uniapp子组件监听触底

海豚先生 / 2023-05-08 / 原文

在主页面中添加事件

    onReachBottom() {
    uni.$emit('onReachBottom');
    },

在子组件中添加监听触底事件

    mounted() {
        var that=this;
        uni.$on('onReachBottom', function(data) {
      console.log('onReachBottom');
      that.getmore();
        });
    },