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.
11 lines
510 B
11 lines
510 B
<!--pages/order/coupon/index.wxml-->
|
|
<title title="优惠券"></title>
|
|
<view class="coupon-item" wx:for="{{list}}">
|
|
<view class="money">{{item.activity.money/100}}</view>
|
|
<view class="coupon-info">
|
|
<view>满{{item.activity.mini_money/100}}元可用</view>
|
|
<view class="couon-date">{{item.activity.end_time}}到期</view>
|
|
</view>
|
|
<view class="iconfont icon-{{item.selected?'gou':'quan'}}" bindtap="selectIt" data-index="{{index}}"></view>
|
|
</view>
|
|
<view class="btn" bindtap="submit">确定</view>
|