<!-- 分享弹窗 -->
<view class="SharePopup" id="SharePopup">
	<van-popup
	 show="{{ showPop }}"
	 position="bottom"
	 bind:close="onClose"
	 z-index="999"
	>
		<!-- <view class="share-tip">
        <text style="color:#333;font-size:28rpx;">朋友通过你分享的页面成功购买后,你可获得奖励金</text>
        <text style="color:#333;font-size:24rpx;">可在【我的】 - 【distributorVal】查看奖励金</text>
      </view>
      <view class="share-tip">
        <text style="color:#333;font-size:28rpx;">朋友通过你分享的页面成功登录后,将成为你的客户</text>
        <text style="color:#333;font-size:24rpx;">可在【我的】 - 【distributorVal】-【我的客户】查看</text>
      </view> -->
		<view class="share-main">
			<view class="share-item" wx:if="{{custom.itemList[0]==1}}">
				<button
				 type="text"
				 open-type="share"
				 class="shareButton"
				>
					<image src="http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/015d5cd2-183a-44aa-9b66-5f7c2e627089.png"></image>
					<text class="item-text">微信分享</text>
				</button>
			</view>
			<view
			 class="share-item"
			 bindtap="copyText"
			 data-text="{{copyLink}}"
			 wx:if="{{custom.itemList[1]==1}}"
			>
				<image src="http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/0320a722-25d2-4a30-900f-790c2a541f2f.png"></image>
				<text class="item-text">复制链接</text>
			</view>
			<view
			 class="share-item"
			 bindtap="toPosters"
			 wx:if="{{custom.itemList[2]==1}}"
			>
				<image src="http://mayi-newshop.oss-cn-shanghai.aliyuncs.com/public/png/18d0044d-9634-4c89-8321-3e8ff8e94cce.png"></image>
				<text class="item-text">生成海报</text>
			</view>
		</view>
		<view class="share-cancel" bindtap="cancel">取消</view>

	</van-popup>
</view>