<view class="container">
<view class="head">
<view>
<view class="event {{currentTab == 0?'act':''}}" bindtap="clickTab" data-current="0">参加活动</view>
<view class="info {{currentTab == 1?'act':''}}" bindtap="clickTab" data-current="1">最新资讯</view>
</view>
</view>
<view class="swiper">
<swiper current="{{currentTab}}" class="screen-swiper" indicator-dots="{{indicatorDots}}" duration="500"
bindchange="swiperTab" style="height:{{swiperHeight}}px">
<swiper-item style="overflow:scroll;">
<scroll-view scroll-y="true" style="height: 100%" bindscrolltolower="lower" enhanced="true"
paging-enabled="true">
<view class="main" wx:for="{{active}}" data-active_id="{{item.active_id}}" bindtap="goActiveDetail">
<image src="{{item.file_path}}"></image>
<view data-active_id="{{item.active_id}}">
<text data-active_id="{{item.active_id}}">{{item.active_name}}</text>
<view data-active_id="{{item.active_id}}">
<text class="time" data-active_id="{{item.active_id}}">参与截止时间:{{item.end_time}}</text>
<text wx:if="{{item.state_text == 0}}" class="btn" data-active_id="{{item.active_id}}"
catchtap="goActiveDetail">去参加</text>
<text wx:if="{{item.state_text == 1}}" data-active_id="{{item.active_id}}" class="btn2">已结束</text>
</view>
</view>
</view>
</scroll-view>
</swiper-item>
<swiper-item style="overflow:scroll;">
<scroll-view scroll-y="true" style="height: 100%" bindscrolltolower="lower" enhanced="true"
paging-enabled="true">
<view wx:for="{{active2}}" wx:key="article">
<view class="main2" bindtap="goActiveDetail2" wx:if="{{item.type == 1}}"
data-active_id="{{item.article_id}}">
<image src="{{item.file_path}}"></image>
<view>
<text class="tit">{{item.title}}</text>
<text class="time">于{{item.view_time}}发布</text>
</view>
</view>
<view class="main2" bindtap="goActiveDetail3" wx:if="{{item.type == 2}}"
data-active_id="{{item.article_id}}">
<image src="{{item.thumb_url}}"></image>
<view>
<text class="tit">{{item.title}}</text>
<text class="time">于{{item.view_time}}发布</text>
</view>
</view>
</view>
</scroll-view>
</swiper-item>
</swiper>
</view>
</view>
我以为是我代码的问题,原来是手机的问题,我定位了一天的bug。下拉刷新和上拉加载同时使用时,异步加载的数据,开发工具正常,真机不能上拉,处理方法:在list里增加一个空对象,并在空对象里设置一个属性,通过ajax加载到列表数据之后,通过该属性过滤掉这个空对象,再将加载的数据赋值到list上,view层通过这个空对象的属性将这条数据设置为透明,处理进入页面会有空白数据展示的问题。
请问你这个问题解决了吗?我iphone xs max也出现这个问题
请问现在有具体的解决办法吗??小程序刚上线,就碰到这样的问题。。。
无法正常滚动?说的具体一点。