41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
<!--coupon.wxml-->
|
|
<view class="coupon-container">
|
|
<!-- <view class="points_box">
|
|
<view class="points-title">
|
|
<t-icon class="points-label" name="filter-3" size="28rpx"></t-icon>
|
|
当前积分
|
|
</view>
|
|
<view class="points-row">
|
|
<view class="points-value">{{displayUserPoints}}</view>
|
|
</view>
|
|
<view class="vip-pill" wx:if="{{vipLevel > 0}}">
|
|
<text class="vip-star">★</text>
|
|
<text class="vip-text">VIP Member Level {{vipLevel}}</text>
|
|
</view>
|
|
<view class="vip-pill" wx:else>
|
|
<text class="vip-star">★</text>
|
|
<text class="vip-text">Member</text>
|
|
</view>
|
|
</view> -->
|
|
<view class="coupon_title">
|
|
获取更多积分
|
|
</view>
|
|
<view class='coupon_box {{item.one_time ? "one_time" : ""}}' wx:for="{{products}}" wx:key="id" wx:for-item="item">
|
|
<view class='content' bindtap="handleCouponTap" data-id="{{item.id}}" data-points="{{item.points}}">
|
|
<view class='title'>{{item.title}}</view>
|
|
<view class='how_much'>{{item.points}}</view>
|
|
</view>
|
|
<view class='btn'> ¥{{item.amountYuan}}</view>
|
|
</view>
|
|
<view class="tips_box">
|
|
<view class="tips-header">
|
|
<view class="tips-icon"><t-icon name="info-circle" size="32rpx"></t-icon></view>
|
|
<view class="tips-title">积分说明</view>
|
|
</view>
|
|
<view class="tips-list">
|
|
<view class="tips-item">积分购买后永久有效。</view>
|
|
<!-- <view class="tips-item"></view> -->
|
|
</view>
|
|
</view>
|
|
</view>
|