uniapp子组件监听触底

在主页面中添加事件

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

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

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

  

posted @ 2023-05-08 11:01  ×千  阅读(262)  评论(0编辑  收藏  举报