20 lines
662 B
Plaintext
20 lines
662 B
Plaintext
<!--packageH/o2o/storeConsumeUse/storeConsumeUse.wxml-->
|
|
<van-nav-bar
|
|
title="门店消费卡"
|
|
left-arrow
|
|
bind:click-left="onClickLeft"
|
|
/>
|
|
<view class="tBox">
|
|
<view class="imgbox">
|
|
<view style="font-size: 24rpx;text-align: center;">消费卡额度</view>
|
|
<view style="font-size: 50rpx;text-align: center;">¥{{cardUse.amount}}</view>
|
|
</view>
|
|
<view class="title">{{cardUse.card_name}}</view>
|
|
</view>
|
|
<view class="pf" wx:if="{{!status}}">
|
|
<view class="btn" catchtap="getdata">确认核销</view>
|
|
</view>
|
|
<view wx:if="{{status}}" class="heSuccess">
|
|
<icon class="iconfont icon-all_select_active"></icon>
|
|
<text>核销成功!</text>
|
|
</view> |