26 lines
1008 B
Plaintext
26 lines
1008 B
Plaintext
<view class="tab-bar">
|
|
<view class="item-container {{tabIndex==0?'current':''}}" bind:tap="changeTab" data-index="0">
|
|
<view class="item">待使用</view>
|
|
</view>
|
|
<view class="item-container {{tabIndex==1?'current':''}}" bind:tap="changeTab" data-index="1">
|
|
<view class="item">已使用</view>
|
|
</view>
|
|
<view class="item-container {{tabIndex==2?'current':''}}" bind:tap="changeTab" data-index="2">
|
|
<view class="item">已失效</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="coupon-list" wx:if="{{list.length>0}}">
|
|
<view class="item {{tabIndex==0?'':'used'}}" wx:for="{{list}}" wx:key="index">
|
|
<view class="left">
|
|
<view class="name">{{item.coupon_name}}</view>
|
|
<view class="desc">有效期至 {{item.expire_time}}</view>
|
|
</view>
|
|
<view class="right money money-yellow">{{item.coupon_amount}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="list-empty" wx:else>
|
|
<image class="icon" src="/assets/icon/shop/coupon-empty@2x.png"/>
|
|
<view class="title">暂无跑腿券</view>
|
|
</view> |