swiper组件中item高度固定的解决方法

当页面有左右滑动,并且下面的数据较长的时候,用swiper控制,会出现swiper-item的高度固定的情况。

解决办法:

1. 

其中clickHeight的值为(获取屏幕高度)

wx.getSystemInfo({

success: function (res) {

that.setData({

clientHeight: res.windowHeight});}})

2.在swiper中套用一层,代码如下: