千目品牌领券机
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
762 B

<view class="mt">
<view class="top">
<view class="tab {{currentTab==='优惠券'?'active':''}}" id="优惠券" bindtap="setTab">优惠券</view>
<view class="tab {{currentTab==='直播券'?'active':''}}" id="直播券" bindtap="setTab">直播券</view>
</view>
<scroll-view scroll-y="{{true}}" class="middle" bindrefresherrefresh="refreshList"
refresher-triggered="{{refresherTriggered}}" refresher-enabled>
<ticket wx:for="{{tabList[currentTab]}}" wx:key="*this" code="{{item}}" bindcollect="check" state="my"></ticket>
<image src="../../images/empty.png" style="width:100%" mode="widthFix"
wx:if="{{tabList[currentTab]&&!tabList[currentTab].length}}">
</image>
<view class="space-bottom"></view>
</scroll-view>
</view>