couponPack.wxml 996 字节
<view class="swiper-tab">
	<view class="swiper-tab-list {{currentTab==1 ? 'on' : ''}}" data-current="1" bindtap="swichNav" id="valid">可用券</view>
	<view class="swiper-tab-list {{currentTab==0 ? 'on' : ''}}" data-current="0" bindtap="swichNav" id="invalid">失效券</view>
</view>
<view class="coupon" wx:if="{{couponList.length > 0}}">
	<lx-coupon wx:for="{{couponList}}" isShowText="true" bind:takePhoto="takePhoto" coupon-info="{{item}}" wx:key="id" pageType='2' />
</view>
<default-no-coupons wx:else />
<!-- <view class="scan-entry pay-record-entry" bindtap="scan">扫一扫</view> -->
<navigator url="/pages/payRecord/payRecord" class="pay-record-entry" hover-class="none" open-type="navigate">
	我的支付记录
</navigator>
<view class="user-info">
	<text class="s">用户ID:{{userId||'-'}}</text>
	<text class="s">手机:{{phone||'-'}}</text>
</view>

<!-- <lx-bottom-bar active="couponPack"/> -->

<lx-warn tips="该券不能在当前门店使用!" show="{{showWarn}}" />