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="market" wx:if="{{showPage}}">
- <!-- 券包 我的优惠券 -->
- <i-tabs class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
- <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
- </i-tabs>
- <view style='padding-top:120rpx;'>
- <view class="nocoupon" wx:if="{{list.length==0}}">
- <image src="{{couponUrl}}" mode="widthFix" />
- <text class="txt001">请您敬请期待</text>
- <text class='txt002'>我们正在筹备一大波优惠活动</text>
- <navigator class='nav' url="/pages/index/index" open-type="switchTab" hover-class="other-navigator-hover">
- <button hover-class='active'>前往首页看看</button>
- </navigator>
- </view>
-
- <view class='section' wx:for='{{list}}' wx:key='{{index}}'>
- <view class='mms' style='background:{{item.background}}'>
- <view class='detail_msg'>
- <view class='info'>
- <view class='title'>
- <text>{{item.title}}</text>
- <image class='fr' src='./../../../assets/images/icon01.png' mode="widthFix"></image>
- </view>
- <view class='expiretime'>
- <text class="txt2">{{item.expiredTime}}到期</text>
- <text class='txt2 fr'>金额<text class='money'>{{item.remainingAmount/10000}}</text>元</text>
- </view>
- <view hover-class='active' bindtap='gotoPay' data-cardId="{{item.id}}" data-couponorderstatus="{{item.couponOrderStatus}}" wx:if="{{item.couponOrderStatus==4}}" class="btns">扫一扫付款</view>
- <view hover-class='active' wx:if="{{item.couponOrderStatus!=4}}" class="btns">已失效</view>
- </view>
- </view>
-
- </view>
- </view>
- <view class="loading" wx:if="{{loading}}">
- <image src="{{loadingUrl}}" mode="widthFix"></image>{{content}}
- </view>
- </view>
- </view>
|