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.
|
- <!-- 券的详情页面 -->
- <view class='coupons'>
- <view class="coupons-body">
- <view class='banner'>
- <image src='{{data.coverImg}}'></image>
- </view>
- <view class='coupons_info'>
- <view>
- <text>{{data.title}}<text>限购{{data.useLimitQuantity}}件</text></text>
- <text wx:if="{{data.endTime!=undefined&&data.type!=5}}">剩余时间:<text>{{endtime}}</text></text>
- <text wx:if="{{data.type==5}}"><text>当次有效</text></text>
- <text>剩余件数:<text>{{data.remainInventory}}件</text></text>
- </view>
- <view>
- <text>¥{{data.salePriceStr}}</text>
- <text>¥{{data.priceStr}}</text>
- </view>
- </view>
-
- <view class='posi'>
- <view class='posi_logo'>
- <view>
- <image src='{{data.merChantImgUrl}}'></image>
- </view>
- <view>
- <text>{{data.merchantName}}</text>
- <text>{{data.addr}}{{data.buildingName}}{{data.floorName}}</text>
- </view>
- <image bindtap='phone' class="tel" src="./../../../assets/img/tel.jpg" mode="widthFix" />
- </view>
- <!-- <view>
- <text>更多适用门店</text>
- <text class='iconfont icon-right'></text>
- </view> -->
- </view>
- <view class='notes'>
- <view>
- <text>购买须知</text>
- </view>
- <view>
- <text><text class='spot'></text>{{data.remark}}</text>
- </view>
- </view>
- </view>
- <view class="buy-view app-border-top">
- <button bindtap='orderFunc' class='buy' wx:if="{{data.salePriceStr!=0&&data.remainInventory!=0}}">立即支付</button>
- <button bindtap='orderFunc' class='buy' wx:elif="{{data.salePriceStr==0&&data.remainInventory!=0}}">免费领取</button>
- <button class='buy' wx:elif="{{data.remainInventory==0}}" style="background:#999;color: #fff;">免费领取</button>
- </view>
- </view>
|