C端小程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

51 строка
2.3 KiB

  1. <!-- <button class='goback' bindtap='goback'><image src='{{wmhome}}' mode="widthFix"></image></button> -->
  2. <navbar home back text="我的券包" background="#ffff"></navbar>
  3. <view style="height:{{navigationBarHeight}} "></view>
  4. <view class="market" wx:if="{{showPage}}">
  5. <!-- 券包 我的优惠券 -->
  6. <i-tabs style="top:{{navigationBarHeight}}" class='tabs' current="{{ current_scroll }}" scroll bindchange="handleChangeScroll">
  7. <i-tab class='i-tab' wx:for="{{tabs}}" wx:key="unique" key="{{item.key}}" title="{{item.name}}"></i-tab>
  8. </i-tabs>
  9. <view style='padding-top:120rpx;'>
  10. <view class="nocoupon" wx:if="{{list.length==0}}">
  11. <image src="{{couponUrl}}" mode="widthFix" />
  12. <text class="txt001">请您敬请期待</text>
  13. <text class='txt002'>我们正在筹备一大波优惠活动</text>
  14. <navigator class='nav' url="{{goHomeUrl}}" 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-quancode="{{item.id}}" data-couponorderstatus="{{item.couponOrderStatus}}">
  19. <view class='mms'>
  20. <view class='detail_msg'>
  21. <view class='logo'>
  22. <image mode="aspectFill" src='{{item.coverImg}}'></image>
  23. </view>
  24. <view class='info'>
  25. <view class='title'>
  26. <text>{{item.title}}</text>
  27. <text class='found' wx:if="{{item.autoRefund == 1}}">过期不退款</text>
  28. </view>
  29. <view class='expiretime fl'>
  30. <text class="txt1">有效期至:</text>
  31. <text class="txt2">{{item.expiredTimeStr}}</text>
  32. </view>
  33. <!-- <view class='subtitle'>
  34. <text>{{item.subTitle}}</text>
  35. </view> -->
  36. </view>
  37. </view>
  38. </view>
  39. <!-- <image></image> -->
  40. <view class='bGroup'>
  41. <view hover-class='' wx:if="{{item.couponOrderStatus==0}}" class="btns">去使用</view>
  42. <view hover-class='' wx:elif="{{item.couponOrderStatus==1||item.couponOrderStatus==2||item.couponOrderStatus==3}}" class="btnsL">查看</view>
  43. </view>
  44. </view>
  45. <view class="loading" wx:if="{{loading}}">
  46. <image src="{{loadingUrl}}" mode="widthFix"></image>{{content}}
  47. </view>
  48. </view>
  49. </view>