index.wxml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <popUp id="popUp">
  2. <scroll-view class="popBox" scroll-y="true" enhanced show-scrollbar="{{false}}">
  3. <view class="header">
  4. 分享
  5. <view class="close" bindtap="closeInvite">
  6. ×
  7. </view>
  8. </view>
  9. <view class="tips">
  10. 通过下面分享都带有您的专属标签,邀请成功的用户,
  11. </view>
  12. <view class="tips">
  13. 都属于您的用户资产,产生的订单和收益都会给到您佣金
  14. </view>
  15. <view class="shareText">
  16. <view class="title">
  17. 分享时可选用文案
  18. </view>
  19. <swiper class="swiper" current="{{current}}" circular indicator-dots="{{true}}"
  20. indicator-active-color="#B2B8C3" indicator-color='#E5E5E5' bindchange="swiperChange">
  21. <swiper-item wx:for="{{list}}" wx:key="id">
  22. <view class="content">{{item.text}}</view>
  23. </swiper-item>
  24. </swiper>
  25. <view class="copy" bindtap="clipboar">
  26. 复制当前话术
  27. </view>
  28. </view>
  29. <view class="shareType">
  30. <button class="resetBtn box" open-type="share">
  31. <image src="/static/wx.png" class="icon" />
  32. <view class="label">微信好友</view>
  33. </button>
  34. <view class="box" bindtap="createPoster">
  35. <image src="/static/hb.png" class="icon" />
  36. <view class="label">生成海报</view>
  37. </view>
  38. <view class="box" bindtap="jump">
  39. <image src="/static/gzh.png" class="icon" />
  40. <view class="label">公众号</view>
  41. </view>
  42. </view>
  43. </scroll-view>
  44. </popUp>
  45. <createPoster id="createPoster"></createPoster>