You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
<!--components/share/share.wxml-->
|
|
<block wx:if='{{ is_show_share_mask }}'>
|
|
<!-- <block wx:if='{{ true }}'> -->
|
|
<!-- 分享弹窗 -->
|
|
<view class="mask" bindtap="hide_share_mask_fn">
|
|
<view class="box" catchtap="no_bubble">
|
|
<view class="header">
|
|
<text>立即分享给好友</text>
|
|
</view>
|
|
<view class="middle">
|
|
<button wx:for="{{shareList}}" open-type="{{ index != 2 ? 'share' : '' }}" data-type="{{item.type}}"
|
|
bindtap="share_fn" wx:key='index'>
|
|
<image src="{{item.imageUrl}}"></image>
|
|
<text>{{item.name}}</text>
|
|
</button>
|
|
</view>
|
|
<view class="footer" catchtap="hide_share_mask_fn">
|
|
<text>取消</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</block>
|
|
<block wx:if='{{ paintPallette }}'>
|
|
<painter palette="{{paintPallette}}" bind:imgOK="onImgOK" bind:touchEnd="touchEnd" />
|
|
</block>
|
|
<view class="image_mask" mode='heightFix' wx:if='{{imagePath}}' catchtap="image_mask_fn">
|
|
<image bindload='image_load' catchtap="no_bubble" catchlongpress="save_image" src="{{imagePath}}" />
|
|
<text>长按上方图片保存</text>
|
|
</view>
|