index.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <!-- 优惠券 -->
  2. <view class="coupon-card-wrap">
  3. <coupon-card couponDTO="{{detail}}" />
  4. </view>
  5. <!-- 说明 -->
  6. <view class="desc-wrap">
  7. <t-cell-group t-class="desc-group-wrap">
  8. <t-cell
  9. wx:if="{{detail && detail.desc}}"
  10. t-class="t-class-cell"
  11. t-class-title="t-class-title"
  12. t-class-note="t-class-note"
  13. title="规则说明"
  14. note="{{detail && detail.desc}}"
  15. />
  16. <t-cell
  17. wx:if="{{detail && detail.timeLimit}}"
  18. t-class="t-class-cell"
  19. t-class-title="t-class-title"
  20. t-class-note="t-class-note"
  21. title="有效时间"
  22. note="{{detail && detail.timeLimit}}"
  23. />
  24. <t-cell
  25. wx:if="{{detail && detail.storeAdapt}}"
  26. t-class="t-class-cell"
  27. t-class-title="t-class-title"
  28. t-class-note="t-class-note"
  29. title="适用范围"
  30. note="{{detail && detail.storeAdapt}}"
  31. />
  32. <t-cell
  33. wx:if="{{detail && detail.useNotes}}"
  34. t-class="t-class-cell"
  35. t-class-title="t-class-title"
  36. t-class-note="t-class-note"
  37. title="使用须知"
  38. note="{{detail && detail.useNotes}}"
  39. />
  40. </t-cell-group>
  41. <!-- 查看可用商品 -->
  42. <view class="button-wrap">
  43. <t-button shape="round" block bindtap="navGoodListHandle"> 查看可用商品 </t-button>
  44. </view>
  45. </view>