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.
 

17 lines
784 B

<!--pages/order/coupon/index.wxml-->
<title title="优惠券"></title>
<view wx:if="{{list.length>0}}">
<view class="coupon-item" wx:for="{{list}}">
<view class="money">{{item.activity.money/100}}</view>
<view class="coupon-info">
<view>{{item.activity.name}}</view>
<view class="couon-date" wx:if="{{item.end_time}}">{{item.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>
</view>
<view class="common-empty" wx:if="{{list.length==0}}" style="z-index:-1;top:0">
<image mode="widthFix" src="https://static.ticket.sz-trip.com/xcxImages/other/nodata.png"></image>
<view>暂无优惠券</view>
</view>