抖音c端
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

57 satır
2.7 KiB

  1. <view class="BoxBg">
  2. <!-- <navbar back home text="我的券包" background='#fff' color="#000"></navbar>
  3. <view style="height:{{navigationBarHeight}} "></view> -->
  4. <view class="boatBoxf">
  5. <view class="boatBox">
  6. <view class="boatItemBox" tt:for="{{boatLsit}}" tt:key="index" bindtap="setBoatFlag" data-index="{{index}}">
  7. <view class="{{boatFlag==item.value? 'boatTitleA':'boatTitle'}}">{{item.name}}</view>
  8. <view class="boatA" tt:if="{{boatFlag==item.value}}"></view>
  9. </view>
  10. </view>
  11. </view>
  12. <view style="height:90rpx "></view>
  13. <view class="picker" tt:if="{{shopList.length>1}}">
  14. <picker mode="selector" bindchange="bindPickerChange" value="{{index}}" range="{{shopList}}" range-key="name"
  15. disabled="{{false}}">
  16. <view class="inside">
  17. <view class="picker_item">
  18. {{shopList[index].name}}
  19. </view>
  20. <image class="img" src="/assets/itemImg/filter.png"></image>
  21. </view>
  22. </picker>
  23. </view>
  24. <view class="ticketList" tt:for="{{list}}" tt:key="{{index}}">
  25. <view class="ticketItem">
  26. <view class="shopImg">
  27. <image mode="aspectFill" src='{{item.coverImg}}'></image>
  28. </view>
  29. <view class="ticketData">
  30. <view class="ticketTitle">{{item.title}}</view>
  31. <view class="date">{{item.expiredTime}}</view>
  32. </view>
  33. </view>
  34. <navigator class="useBtn" tt:if="{{item.couponOrderStatus==0}}"
  35. url="/pages/couponorder/detail/index?quancode={{item.id}}&couponorderstatus={{boatFlag}}&validStatus={{item.validStatus}}&mallTenantId={{item.tenantId}}"
  36. hover-class="navigator-hover" open-type="navigate">去使用</navigator>
  37. <navigator class="nouseBtn"
  38. tt:if="{{item.couponOrderStatus==1||item.couponOrderStatus==2||item.couponOrderStatus==3}}"
  39. url="/pages/couponorder/detail/index?quancode={{item.id}}&couponorderstatus={{boatFlag}}&validStatus={{item.validStatus}}&mallTenantId={{item.tenantId}}"
  40. hover-class="navigator-hover" open-type="navigate">查看</navigator>
  41. </view>
  42. <view class="dingdan" tt:if="{{list.length==0}}">
  43. <image src="../../../assets/itemImg/noOrders.png" mode="widthFix"></image>
  44. <text>您还没有相关订单</text>
  45. <text>再忙,也要记得买点什么犒赏自己~</text>
  46. </view>
  47. <view class="loading" tt:if="{{loading}}">
  48. <image src="../../../assets/itemImg/loading.gif" mode="widthFix"></image>{{content}}
  49. </view>
  50. </view>
  51. <tabbar tt:if="{{ifshowtab}}" />