在用swiper实现下拉的动态效果,并不涉及刷新,出现问题就是android的实现效果ok,但是ios中有系统自带的下拉效果与添加的效果冲突
<swiper autoplay="{{autoplay}}" interval="{{interval}}" vertical=“true” duration="{{duration}}" style=“width:100%;height:{{winHeight}}rpx”>
<swiper-item >
<view class=“g-row categoryWrap”>
<view class=“cate-right”>
<scroll-view scroll-y=“true” style=“padding-bottom:80rpx;”>
<view class=“seller-item” wx:for="{{stores}}" wx:key="{{key}}">
<view class=“seller-info”>
<image mode=“aspectFill” src="{{item.store_logo}}" data-id="{{item.store_id}}" bindtap=“goods” style=“width:100%;height:290rpx;background-size:100% 100%;margin-top:-12rpx;”></image>
</view>
</view>
</scroll-view>
</view>
</view>
</swiper-item>
</swiper>
这段代码中实现的效果,在android中下拉的时候没有卡顿,但是在iphone中会出现卡顿