千目品牌领券机
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.
 

37 lines
1.5 KiB

<view class="index">
<view class="top">
<navigator wx:if="{{mall}}" class="left" url="../malls/index">
<image class="img-left" src="./icon.png"></image> {{mall.city}} {{mall.name}}
<image class="img-right" src="./arrow.png"></image>
</navigator>
<navigator class="right" url="../checked/index">核销记录</navigator>
</view>
<scroll-view scroll-y="{{true}}" class="middle" refresher-enabled bindrefresherrefresh="refreshList"
refresher-triggered="{{refresherTriggered}}">
<ticket wx:for="{{mall.coupons}}" wx:key="*this" code="{{item}}" bindcollect="doShowModal" state="mall">
</ticket>
<image src="../../images/empty.png" style="width:100%" mode="widthFix"
wx:if="{{mall.coupons&&!mall.coupons.length}}"></image>
<view class="space-bottom"></view>
</scroll-view>
<view class="bottom">
<navigator url="../mytickets/index">
<image class="left-icon" src="./ticket.png"></image>
<view wx:if="{{userCouponNum}}" class="banner">{{userCouponNum}}</view>
我的券包
</navigator>
<button open-type="share">
<image class="right-icon" src="./share.png"></image>
分享
</button>
</view>
<view class="modal" wx:if="{{showModal}}">
<view class="blur"></view>
<view class="content">
<view class="r1">领取成功</view>
<image class="r2" src="./tick.png"></image>
<view class="r3">{{couponName}}已经放入您的券包</view>
<button class="btn" bindtap="hideModal">确定</button>
</view>
</view>
</view>