poster.wxml 891 B

1234567891011121314151617181920
  1. <!--pages/poster/poster.wxml-->
  2. <view class="poster">
  3. <view class="container">
  4. <block wx:if="{{isShowPoster}}">
  5. <poster wx:if="{{isShowQRPoster}}" obj="{{posterData}}" barcodeImgUrl="{{postImgSrc}}"></poster>
  6. <image class="poster-default-img" mode="widthFix" src="../../images/poster-default.png">
  7. </image>
  8. <view wx:if="{{isShowCanvas}}" class="canvas-conatiner">
  9. <painter palette="{{template}}" bind:imgOK="onImgOK" />
  10. </view>
  11. </block>
  12. <image wx:if="{{shareQRImgSrc}}" class="qr-img" bindload="imgLoad" mode="widthFix" src="{{shareQRImgSrc}}">
  13. </image>
  14. </view>
  15. <view class="bottom-wrap" bind:tap="handleFinishAction">
  16. <text class="sure">完成</text>
  17. <text class="tip">(分享图片至朋友圈,与小伙伴一起分享)</text>
  18. </view>
  19. </view>