Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <!-- 券的详情页面 -->
- <view class='coupons'>
- <view class="coupons-body">
- <view class='banner'>
- <image src='{{data.coverImg}}'></image>
- </view>
- <view class='coupons_info'>
- <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'>{{data.priceStr}}元</text>
- </view>
- <text class="restNum fr">剩余<text>{{data.remainInventory}}件</text></text>
- </view>
-
-
- <view class='rest' wx:if="{{data.endTime!=undefined&&data.endTime>=0&&data.type!=5}}">
- <text class='txt01'>距结束:</text>
- <text class='time'>{{endtime}}</text>
- </view>
-
- <view class="rest" wx:if="{{data.endTime!=undefined&&0>=data.endTime&&data.type!=5}}">剩余时间:
- <text class='time'>即将到期</text>
- </view>
- <view class='rest' wx:if="{{data.endTime==undefined}}">自领取之日起
- <text class='time'>{{data.validDays}}</text>天内有效</view>
- <view class='rest' wx:if="{{data.type==5}}">
- <text class='time'>当次有效</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'>
- <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>
-
-
- <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' hover-class='active' class='buy' wx:if="{{data.salePriceStr!=0&&data.remainInventory!=0}}"><text class='txt'>{{data.salePriceStr}}元</text>马上购买</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>
|