C端小程序
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.

35 line
1.6 KiB

  1. <!-- 折扣卡list页面 -->
  2. <view class='content'>
  3. <view class="market clearfix">
  4. <view class='tabss'>
  5. <i-tabs current="{{current_scroll}}" scroll bindchange="handleChangeScroll">
  6. <i-tab wx:for="{{tabData}}" wx:key="unique" key="{{item.id}}" title="{{item.title}}"></i-tab>
  7. </i-tabs>
  8. </view>
  9. <view class='cards clearfix'>
  10. <view class="nocoupon" wx:if="{{list.length==0}}">
  11. <image src="{{couponUrl}}" mode="aspectFill" lazy-load="true" />
  12. <text class="txt001">请您敬请期待</text>
  13. <text class='txt002'>我们正在筹备一大波优惠活动</text>
  14. <navigator class='nav' url="/pages/main/index" open-type="switchTab" hover-class="other-navigator-hover">
  15. <button hover-class='active'>前往首页看看</button>
  16. </navigator>
  17. </view>
  18. <view class='section' wx:for='{{list}}' wx:key='{{index}}' bindtap="gotouse" data-couponId='{{item.couponId}}' data-type="{{item.type}}" data-quancode="{{item.id}}">
  19. <view class='mms'>
  20. <image src="{{canTransferred}}" wx-if='{{item.supportTransfer==1}}' class='cantransferred' mode="aspectFill"/>
  21. <view class='detail_msg'>
  22. <image mode="aspectFill" src='{{item.coverImg}}' mode='widthFix'></image>
  23. <text>{{item.title}}</text>
  24. </view>
  25. <view class='buycardbtn'>
  26. <button>{{item.salePriceStr}}元 <text>购买</text></button>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. <view class="loading" wx:if="{{loading}}">
  33. <image src="{{loadingUrl}}" mode="widthFix"></image>{{content}}
  34. </view>
  35. </view>