收藏
回答

bindscrolltolower无法生效

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug scroll-view 工具 Version. 3.5.5 (23491) WeChatLib: 2.26.0 (2022.8.31 17:16:22)

<scroll-view 

class="you-may-also-like" 

scroll-y

scroll-with-animation

enable-back-to-top

:scroll-into-view="view"

@scrolltolower="scrolltolower()" 

enable-flex="true" 

:style="'height:{{ scrollH }}px'">

<List></List>

</scroll-view>


export default {

data() {

return {

scrollH: 0,

page: 1

}

}, 

async onLoad() {

this.scrolltolower()

var self = this;

wx.getSystemInfo({

  success: function(res) {

self.scrollH = res.windowHeight;

  }

}); 

}, 

methods: {

scrolltolower() {

this.page++;

}

},  

}



<style lang="scss">

page{

    width:100%;

    height:100%;

}

 

.you-may-also-like {

height: 100%;

}

scroll-view {

    height: 500px;

    /* other the code.. */

.banner-swiper {

height: 750rpx;

.swier-item {

image {

height: 100%;

}

}

}

.banner-section {

display: flex;

background-color: #FFFFFF;

image {

width: 375rpx;

}

}

回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容