goodsPoster.wxml 935 B

1234567891011121314151617181920212223242526
  1. <view class="container" style="filter: brightness(25%);">
  2. <image src="{{imgUrl}}" style="width:750rpx; min-height:800rpx;" mode="widthFix" show-menu-by-longpress="true"></image>
  3. <view class="bottom">
  4. <view class="btn" bindtap="copyText">复制文案</view>
  5. <view class="btn" bindtap="goSaveQrcode">保存海报</view>
  6. </view>
  7. </view>
  8. <!-- 展示蒙层 显示推广画报 -->
  9. <view class="poster">
  10. <view class="title">推广文案</view>
  11. <view class="ads">{{ads}}</view>
  12. <image src="{{imgUrl}}" style="width:480rpx; min-height:800rpx;" mode="widthFix" show-menu-by-longpress="true"></image>
  13. <view class="tool">
  14. <view>
  15. <image class="img" src="/static/images/new/p_copy.png"></image>
  16. </view>
  17. <view>
  18. <image class="img" src="/static/images/new/p_wx.png"></image>
  19. </view>
  20. <view>
  21. <image class="img" src="/static/images/new/p_save.png"></image>
  22. </view>
  23. </view>
  24. </view>