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 wx:if="{{showPage}}">
- <!-- 券的详情页面 -->
- <view class='coupons'>
- <view class="coupons-body">
- <view class='banner'>
- <image src='{{data.coverImg}}'></image>
- </view>
- <view class='coupons_info' style='position:relative;z-index:9'>
- <view class='fenxiang'>
- <image class="fenxiang" src='./../../../assets/img/fenxiang.png' mode="widthFix"></image>
- <button class='share user-motto' data-id='{{data.id}}' data-couponId='{{data.couponId}}' data-title='{{data.title}}' id="shareBtn" open-type="share" hover-class="other-button-hover"></button>
- </view>
- <view>
- <view class='distance' wx:if="{{data.targetAd==2&&data.endTime!=undefined&&data.type!=5}}">
- <view style='text-align:center;display:inline-block;'>
- <image class='clock' src='./../../../assets/img/clock.png' mode='widthFix'></image>
- <text class="qiang">距结束还剩 :</text>
- </view>
- <view wx:if="{{clock=='已经截止'||data.remainInventory==0||data.status==1}}" class='times'>
- <text>{{day}}</text>天
- <text>{{hour}}</text>:
- <text>{{min}}</text>:
- <text>{{sec}}</text>
- </view>
- <view wx:if="{{clock!='已经截止'&&data.remainInventory!=0}}" class='times'>
- <text>{{day}}</text>天
- <text>{{hour}}</text>:
- <text>{{min}}</text>:
- <text>{{sec}}</text>
- </view>
- </view>
- <text class='title'>{{data.title}}</text>
- <text class="subTitle">{{data.subTitle}}</text>
- <view class='salePriceStr clearfix'>
- <view class="fl">售价:
- <text class="pri01">{{data.salePriceStr}}</text>
- <text class="yuan">元</text>
- <text class='throgh' wx:if="{{data.unit==0}}">{{data.priceStr}}元</text>
- <text wx:if="{{data.unit==1}}">{{data.priceStr}}小时</text>
- </view>
- <text class="restNum fr">剩余<text>{{data.remainInventory}}件</text></text>
- </view>
- <view class='rest' wx:if="{{data.validType==2}}">有效期:自领取之日起
- <text class='time'>{{validDays}}</text>天内有效</view>
- <view class='rest' wx:if="{{data.validType==1}}">有效期:
- <text class='time'>{{validStartDate}}至{{validEndDate}}</text>
- </view>
- <view class='rest' wx:if="{{data.type==5}}">
- <text class='time'>当次有效</text>
- </view>
- <view class='rest' wx:if="{{data.type==1}}">
- <text class='txt01'>使用条件:</text>
- <text class='time'>满{{data.usePriceStr}}元可用</text>
- </view>
- <view class='rest'>
- <text class='txt01'>限购条件:</text>
- <text class='time'>每人{{data.useLimitQuantity}}张</text>
- </view>
- </view>
- </view>
- <view class='posi'>
- <view class='posi_logo' wx:for="{{data.merchantVoList}}" wx:key="index">
- <view>
- <image src='{{item.merchantImgUrl}}'></image>
- </view>
- <view>
- <text>{{item.merchantName}}</text>
- <text>{{item.addr}}{{item.buildingName}}{{item.floorName}}</text>
- </view>
- <image bindtap='phone' data-merchantLinkPhone='{{item.merchantLinkPhone}}' class="tel" src="./../../../assets/img/tel.jpg" mode="widthFix" />
- </view>
- </view>
- <view class='notes'>
- <view>
- <text>购买须知</text>
- </view>
- <view>
- <text><text class='spot'></text>{{data.remark}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
|