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.
23 lines
1.2 KiB
23 lines
1.2 KiB
<view class="coupons">
|
|
<!-- <view wx:if="coupons_list.length==0" class="no_content">
|
|
<image class="img" src="/images/ui/none.png" />
|
|
<view class="warn">还未查询到可用优惠券</view>
|
|
</view> -->
|
|
<view class="coupon coupon_back{{item.is_received}}" wx:for="{{coupons_list}}">
|
|
<view class="_left color{{item.is_received}}">
|
|
<text style=" font-size: 30px;">¥</text>{{item.subtract}}
|
|
</view>
|
|
<view class="_right">
|
|
<view class="_ln">满{{item.full}}元可用</view>
|
|
<view class="_ln">
|
|
<!-- <text wx:for="{{item.drama_abb}}" wx:for-item='params'>{{params.short_name}}</text>可使用本张优惠券</view> -->
|
|
仅可购买部分演出
|
|
</view>
|
|
<view class="_ln">有效期至{{item.end_date}}</view>
|
|
</view>
|
|
<view class="_rightbtn" bindtap="collect_receive" data-id="{{item.id}}" data-index='{{index}}' wx:if="{{!item.is_received}}">领取</view>
|
|
<view class="_rightbtn received" wx:elif='{{item.is_received==1}}'>已领取</view>
|
|
<view class="_rightbtn received" wx:elif='{{item.is_received==2}}'>已抢光</view>
|
|
</view>
|
|
</view>
|
|
<button class="_button" bindtap="mydiscount">我的优惠券</button> |