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="page" hover-class="none" hover-stop-propagation="false">
- <view class="bargaingoods" wx:if="{{bargaingoods}}" hover-class="none" hover-stop-propagation="false">
- <view class="banner" wx:if="{{list.length>0}}" hover-class="none" hover-stop-propagation="false">
- <c-banner wx:key="unique" list="{{list}}" />
- </view>
- <view class="list" hover-class="none" hover-stop-propagation="false">
- <view class="listitem clearfix" wx:for="{{lists}}" wx:key="{{index}}" hover-stop-propagation="false" data-couponId='{{item.couponId}}' data-id='{{item.id}}' bindtap='invite'>
- <image class="fl" src="{{item.coverImg}}" mode="aspectFill" lazy-load="true" binderror=""
- bindload=""></image>
- <view class="fl ri" hover-class="none" hover-stop-propagation="false">
- <text class="txt01">{{item.title}}</text>
- <text class="txt02">{{item.subTitle}}</text>
- <text class="txt03">{{item.priceStr}}元</text>
- <text class="txt04">可砍至<text class="money">{{item.salePriceStr}}</text>元</text>
- </view>
- <view class="botton" hover-class="none" hover-stop-propagation="false">发起砍价</view>
- </view>
- <view class="loading" wx:if="{{loading}}"><image src="{{loadingUrl}}" mode="aspectFill"></image>{{content}}</view>
- <!-- <view class='loadingtext' wx:if="{{loadingtext}}">{{loadingtext}}</view> -->
- </view>
- </view>
- <view class="list mybargain" wx:if="{{mybargain}}" hover-class="none" hover-stop-propagation="false">
- <view class="listitem clearfix" wx:for="{{lists}}" wx:key="index" hover-stop-propagation="false">
- <image class="fl" src="{{item.coverImg}}" mode="aspectFill" lazy-load="true"></image>
- <view class="fl ri" hover-class="none" hover-stop-propagation="false">
- <text class="txt01">{{item.title}}</text>
- <text class="txt02">{{item.subTitle}}</text>
- <text class="txt04 mr txt004" wx:if="{{item.orderStatus == 6&&todayDate<=item.pressEndDate}}">距砍价到{{item.salePrice/100}}元还差:</text>
- <text class="txt04 mr" wx:if="{{item.orderStatus == 6&&todayDate<=item.pressEndDate}}">{{item.pressCurrentValue/100}}元</text>
- <text class="txt04 mr" wx:if="{{item.orderStatus == 7}}">已砍价到底价:{{item.salePrice/100}}元</text>
- </view>
- <view class='again' wx:if="{{item.orderStatus == 6&&todayDate<=item.pressEndDate}}" hover-class="none" hover-stop-propagation="false" data-id="{{item.id}}" bindtap="inviteFriend">
- <view class="botton1">邀请好友砍价</view>
- </view>
- <view class='again' wx:if="{{item.orderStatus == 7}}" data-id="{{item.id}}" bindtap="inviteFriend">
- <view class="botton2" hover-class="none" hover-stop-propagation="false">立即支付</view>
- <image class="icon" src="./../../assets/images/bargainsuccess.png" lazy-load="true"/>
- </view>
- <view class='again' wx:if="{{item.orderStatus == 8||item.orderStatus == 6&&todayDate>item.pressEndDate}}" data-couponChannelId="{{item.couponChannelId}}" data-couponId="{{item.productId}}" data-id="{{item.id}}" bindtap="barginAgain">
- <view class="botton3" hover-class="none" hover-stop-propagation="false">重新砍价</view>
- <image class="icon" src="./../../assets/images/bargainfail.png" lazy-load="true"/>
- </view>
-
- <view wx:if="{{item.orderStatus == 2 || item.orderStatus == 9}}">
- <image class="icon" style="margin-top:60rpx;" src="./../../assets/images/bargaincancel.png" lazy-load="true"/>
- </view>
- </view>
- <view class="loading" wx:if="{{loading}}"><image src="{{loadingUrl}}" mode="aspectFill"></image>{{content}}</view>
- <!-- <view class='loadingtext' wx:if="{{loadingtext}}">{{loadingtext}}</view> -->
- </view>
- <view class='dingdan' wx:if="{{lists.length==0}}">
- <image src="{{actUrl}}" mode="widthFix"></image>
- <text>暂无数据</text>
- </view>
- <view class="clearfix buttonfix" hover-class="none" hover-stop-propagation="false">
- <view class="{{bargaingoods?'active1':''}}" hover-class="none" hover-stop-propagation="false" bindtap="bargaingoods">砍价商品</view>
- <view class="{{ mybargain?'active1':''}} line" hover-class="none" hover-stop-propagation="false" bindtap="mybargain">我的砍价</view>
- </view>
- </view>
|