couponDetail.wxml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <view class="container">
  2. <header text="我的优惠券" bind:back="handleBack"></header>
  3. <view class="content">
  4. <view wx:if="{{status == 0}}">
  5. <view class="title">{{couponInfo.coupon_name}}</view>
  6. <view class="time">{{couponInfo.end_time}}到期</view>
  7. </view>
  8. <view class="code-box" wx:if="{{status == 0}}">
  9. <!-- 显示二维码 -->
  10. <block wx:if="{{codeType === 'qr'}}">
  11. <image bindtap="onChange" class="code-img" src="{{'data:image/png;base64,' + couponInfo.qr_code}}" mode="aspectFit" />
  12. <view class="code-text">使用时向服务员出示此码</view>
  13. <view class="barcode" bindtap="toggleCode">切换至条形码</view>
  14. </block>
  15. <!-- 显示条形码 -->
  16. <block wx:elif="{{codeType === 'bar'}}">
  17. <image bindtap="onChange" class="code-img" src="{{'data:image/png;base64,' + couponInfo.bar_code}}" mode="aspectFit" />
  18. <view class="code-text">使用时向服务员出示此码</view>
  19. <view class="barcode" bindtap="toggleCode">切换至二维码</view>
  20. </block>
  21. </view>
  22. <view class="code-box" wx:if="{{status == 1}}">
  23. <image class="yhx-img" src="{{baseUrl + '/static/image/yhx-bg.png'}}" mode="aspectFit"/>
  24. <view class="code-yhx-text">{{couponInfo.verify_status_text}}</view>
  25. <view class="barcode-yhx">{{couponInfo.verify_time}}核销</view>
  26. </view>
  27. <view class="store-box" bindtap="goPage">
  28. <view class="box-lf">
  29. <image class="store-img" src="/static/image/md.png" mode="aspectFit"/>
  30. <view>适用门店</view>
  31. </view>
  32. <view class="box-ri">
  33. <view>去查看{{couponInfo.stores}}家</view>
  34. <image class="arrow-right" src="/static/image/arrow-right.png" mode="aspectFit"/>
  35. </view>
  36. </view>
  37. <view class="explanation">
  38. <image class="store-img" src="/static/image/sm.png" mode="aspectFit"/>
  39. <view class="explanation-text">
  40. <view>其他说明</view>
  41. <view class="period">时段设置:全天可用 00:00-23:59</view>
  42. </view>
  43. </view>
  44. </view>
  45. </view>