index.wxml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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">
  23. {{item.text}}
  24. </view>
  25. </swiper-item>
  26. </swiper>
  27. <view class="copy" bindtap="clipboar">
  28. 复制当前话术
  29. </view>
  30. </view>
  31. <view class="shareType">
  32. <button class="resetBtn box" open-type="share">
  33. <image src="/static/wx.png" class="icon" />
  34. <view class="label">微信好友</view>
  35. </button>
  36. <view class="box" bindtap="createPoster">
  37. <image src="/static/hb.png" class="icon" />
  38. <view class="label">生成海报</view>
  39. </view>
  40. <view class="box" bindtap="jump">
  41. <image src="/static/gzh.png" class="icon" />
  42. <view class="label">公众号</view>
  43. </view>
  44. </view>
  45. </scroll-view>
  46. </popUp>
  47. <createPoster id="createPoster"></createPoster>