index.wxml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <nav type="back" background-color="#ffffff" frontColor="#000000" title="分享推广" />
  2. <view class="page" style="height:calc( 100vh - {{navHeight}}px );">
  3. <view class="box">
  4. <view class="btnBox">
  5. <view class="li">
  6. <button class="btn" open-type="share">
  7. <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20250416/ff1ji8042627631.png?imageView2/1/w/200/h/200" mode="widthFix" />
  8. </button>
  9. <view class="text">微信</view>
  10. </view>
  11. <view class="li">
  12. <button class="btn" bind:tap="onCopy">
  13. <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20250416/q1dei1042627731.png?imageView2/1/w/200/h/200" mode="widthFix" />
  14. </button>
  15. <view class="text">复制链接</view>
  16. </view>
  17. <view class="li">
  18. <button class="btn" bind:tap="saveCanvas">
  19. <image src="https://file-cloud.fmode.cn/EbxZUK5lBI/20250416/dd15rf042626959.png?imageView2/1/w/200/h/200" mode="widthFix" />
  20. </button>
  21. <view class="text">保存图片</view>
  22. </view>
  23. </view>
  24. <block wx:if="{{canv_sty.w&&canv_sty.h}}">
  25. <canvas id="myCanvas" class="posters" style="width:{{canv_sty.w}}px; height: {{canv_sty.h}}px;" type="2d" />
  26. </block>
  27. </view>
  28. </view>