32 lines
893 B
Plaintext
32 lines
893 B
Plaintext
<!--components/discountCoupon/index.wxml-->
|
|
|
|
|
|
<view class="wrapper">
|
|
<view class="top">
|
|
<view class="left">
|
|
<view class="typeText">
|
|
通用优惠券
|
|
</view>
|
|
<view class="time">
|
|
有效期至2024.12.01
|
|
</view>
|
|
</view>
|
|
<view class="right">
|
|
<view class="price">
|
|
<text style="font-size: 26rpx;line-height: 26rpx;"> ¥ </text>
|
|
<view class="number"> 30 </view>
|
|
</view>
|
|
<view class="limit">
|
|
满30可用
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="bottom">
|
|
<view class="left">
|
|
仅限商城使用
|
|
</view>
|
|
<view class="right">
|
|
<van-button type="info" size="small" bind:tap="handleUse">去使用</van-button>
|
|
</view>
|
|
</view>
|
|
</view> |