jiangping
2024-07-25 749d37d04c015f6dfc6e430200700b59ff410b51
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<view class="main_wrap">
  <view class="footer_wrap" style="padding-bottom: {{bottomLift}}px;">
    <view class="content">
      <view class="btns">
        <view bindtap="handleEnjoy" class="item">
          <image wx:if="{{ info.isEnjoy }}" src="../../static/icon/detail_nav_like_sel@2x.png"></image>
          <image wx:else src="../../static/icon/detail_nav_like@2x.png"></image>
          <text>喜欢</text>
        </view>
        <view bindtap="handleCollec" class="item">
          <image wx:if="{{ info.isCollection }}" src="../../static/icon/detail_nav_collected.png"></image>
          <image wx:else src="../../static/icon/detail_nav_collect.png"></image>
          <text>收藏</text>
        </view>
        <view bindtap="handleDown" class="item">
          <image src="../../static/icon/detail_nav_download@2x.png"></image>
          <text>下载</text>
        </view>
      </view>
      <view bindtap="openShare" class="share">分享</view>
    </view>
  </view>
  <!--  -->
  <view wx:if="{{ showShare }}" class="shade_modal" style="padding-bottom: {{bottomLift}}px;">
    <view class="btns">
      <button open-type="share" class="item" bindtap="handleShare">
        <image src="../../static/icon/wechat.png"></image>
        <view>小程序分享</view>
      </button>
      <button class="item" bindtap="handleDown">
        <image src="../../static/icon/download.png"></image>
        <view>下载海报</view>
      </button>
    </view>
    <view bindtap="onClose" class="cancel">取消</view>
  </view>
  <view wx:if="{{ showShare }}" class="shade" bindtap="onClose"></view>
</view>