小程序swiper-item内容过多显示不全的解决方案

  最近在项目遇到swiper高度不能自适应,导致swiper-item 里面的内容过多时只能显示一部分,最终解决方案:
"{ {currentTab}}" style="height: { {clientHeight?clientHeight+'px':'auto'}}"> "{ {true}}" style="height: { {clientHeight?clientHeight+'px':'auto'}}" bindscrolltolower="scrollbot"> 内容放在这
swiper-item {
  overflow: scroll;
}

最后在后台动态获得屏幕可视区域高度clientHeight即可

  onLoad: function () {
    var that = this
    wx.getSystemInfo({
      success: function (res) {
        that.setData({
          clientHeight: res.windowHeight-177
        });
      }
    })
}

 

转载于:https://www.cnblogs.com/bin521/p/11212090.html

你可能感兴趣的:(小程序swiper-item内容过多显示不全的解决方案)