69 lines
3.0 KiB
Plaintext
69 lines
3.0 KiB
Plaintext
<!-- 头部 -->
|
|
<nav-bar isBack="{{isBack}}" pageTitle="{{pageTitle}}" system="{{system}}"></nav-bar>
|
|
<!-- user/couponExchange/couponExchange.wxml -->
|
|
<view class="couponExchange">
|
|
<view class="coup_bac"></view>
|
|
<view class="coup_record flex-con2">
|
|
<image class="icon_jf" src="/static/img/icon/jf.png" />
|
|
<view class="coup_record_p1 ml10">我的积分</view>
|
|
<view class="coup_record_p2 ml20">{{userInfo.integral}}</view>
|
|
<view class="flex1 coup_record_p3 flex-con5" data-url="/user/parIncome/parIncome?index=1" bind:tap="goUrl">
|
|
<span>积分记录</span>
|
|
</view>
|
|
</view>
|
|
<view class="coup_List">
|
|
<view class="coup_row">
|
|
<view class="coup_tit">积分换券</view>
|
|
<view wx:if="{{couponList.length > 0}}" class="list_row" wx:for="{{couponList}}" wx:key>
|
|
<view class="coup_list_row mt30">
|
|
<image src="/static/img/jf-list.png" />
|
|
<view class="coup_list_row_a flex-con2">
|
|
<view class="coup_list_row_mon">
|
|
<view class="mon_span">
|
|
¥
|
|
<span>{{item.coupon_price}}</span>
|
|
</view>
|
|
<view>门槛:{{item.use_min_price}}</view>
|
|
</view>
|
|
<view class="flex1">
|
|
<view class="cuop_p1 mb10">{{item.title}}</view>
|
|
<view class="cuop_p2 mb5">{{item.jf}}积分兑换</view>
|
|
<view class="cuop_p2">2019-08-01 至 2019-08-31</view>
|
|
</view>
|
|
<button class="cuop_btn" data-item="{{item}}" catchtap="openTips1">
|
|
立即兑换
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{couponList.length <= 0}}" class="empty flex-con3">
|
|
<view>
|
|
<image class="empty_img" src="/static/img/icon/order-konw-icon.png" />
|
|
<view class="mt20">暂无内容</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 领取优惠券弹窗 -->
|
|
<!-- 反洗 -->
|
|
<view wx:if="{{isTips}}" class="backwash_tips flex-con3 tips">
|
|
<view>
|
|
<view class="tips_cen">
|
|
<view class="tips_cen_tit">
|
|
本次兑换将消耗
|
|
<span>{{changeCoupon.jf}}</span>
|
|
积分
|
|
</view>
|
|
<view class="mt20 tips_cen_tit1">确认后积分将无法返还</view>
|
|
<view class="tips_cen_sub" catchtap="confirmSub">立即兑换</view>
|
|
</view>
|
|
<view class="tips_img" catchtap="closeTips1">
|
|
<image src="/static/img/icon/colse_tips.png" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 加载动画 -->
|
|
<loading-prog isLoading="{{isLoading}}"></loading-prog>
|
|
<!-- toasta提示 -->
|
|
<i-toast id="toast" /> |