C端小程序
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

39 Zeilen
1.5 KiB

  1. <view class="couponbg">
  2. <view class="title">{{title}}</view>
  3. <view class="subtitle">{{subtitle}}</view>
  4. <image class='line' src='{{lineUrl}}' mode="widthFix"></image>
  5. <!--
  6. couponorderstatus
  7. 0 未使用
  8. 1 已使用
  9. 2 已过期
  10. 3 已经退款
  11. -->
  12. <view class="zhuangtai">
  13. <image wx:if="{{couponorderstatus==1}}" src="{{wm01Url}}" mode='widthFix'></image>
  14. <image wx:if="{{couponorderstatus==2}}" src="{{wm02Url}}" mode='widthFix'></image>
  15. <image wx:if="{{couponorderstatus==3}}" src="{{wm03Url}}" mode='widthFix'></image>
  16. <view class="panel" wx:if="{{couponorderstatus==0}}">
  17. <view class="barcode">
  18. <canvas canvas-id="barcode" />
  19. </view>
  20. <view class="qrcode">
  21. <canvas canvas-id="qrcode" />
  22. </view>
  23. <view class="barnum buy"><text>兑换码:</text>{{code}}</view>
  24. </view>
  25. </view>
  26. <image class='line' style='margin-top:0;margin-bottom:16rpx;' src='{{lineUrl}}' mode="widthFix"></image>
  27. <view class="gou">
  28. <view class="mai">购买须知:</view>
  29. <view class="remark">{{remark}}</view>
  30. </view>
  31. </view>
  32. <view class='game' bindtap="gotogame" wx-if="{{showIf}}">
  33. <view class='game-entry'>
  34. <image src="{{staticGamedata.imgUrl}}" class='gameimg' mode='widthFix'></image>
  35. <text>用户专享神秘礼物</text>
  36. <text>独家福利,抢完即止</text>
  37. </view>
  38. </view>