You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.5 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<loading hidden="{{hidden}}">
加载中
</loading>
<view class='cy-content'>
<view class='cy-content-title flex-display'>
<view wx:for="{{tabs}}" wx:key="{{item}}" data-index='{{index}}' bindtap='cy_selectTypeCoupon' class='cy-content-item content-center'>
<view>
<view class='cy-use-item'>{{item.name}}</view>
<view wx:if="{{item.checked}}" class='cy-use-line'></view>
</view>
</view>
</view>
<view class='cy-content-list'>
<block wx:if="{{couponList1.length > 0}}">
<view wx:for="{{couponList1}}" wx:key="{{item}}" data-index='{{index}}' class='cy-list-item flex-display' bindtap='cy_couponDetail'>
<view class='cy-item-value content-center'>
<image style='width:220rpx;height:130rpx;' src='../../images/icon-card.png'></image>
<text>¥{{item.worth}}</text>
</view>
<view class='cy-item-des'>
<view class='cy-item-des-title content-center'>{{item.title}}</view>
<view class='content-center' style='font-weight:bold; width:100%; height:25rpx; font-size:8px;'>
<text decode="{{true}}">/&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</text>
</view>
<view class='cy-item-date content-center'>有效期:{{item.startDate}}{{item.endDate}}</view>
</view>
</view>
</block>
<block wx:if="{{couponList1.length == 0}}">
<view class='cy-warn-view content-center'>
暂无优惠券,敬请关注
</view>
</block>
</view>
</view>