jiangping
2024-07-24 af9f7ad7d711f0562e4394449a117da20f808fc2
wechat_staff/components/detailFooter/index.wxml
@@ -2,15 +2,17 @@
  <view class="footer_wrap" style="padding-bottom: {{bottomLift}}px;">
    <view class="content">
      <view class="btns">
        <view class="item">
          <image src="../../static/icon/detail_nav_like_sel@2x.png"></image>
        <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 class="item">
          <image src="../../static/icon/detail_nav_collected.png"></image>
        <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 class="item">
        <view bindtap="handleDown" class="item">
          <image src="../../static/icon/detail_nav_download@2x.png"></image>
          <text>下载</text>
        </view>
@@ -19,7 +21,7 @@
    </view>
  </view>
  <!--  -->
  <view class="shade_modal" style="padding-bottom: {{bottomLift}}px;">
  <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>
@@ -32,5 +34,5 @@
    </view>
    <view bindtap="onClose" class="cancel">取消</view>
  </view>
  <view class="shade" bindtap="onClose"></view>
  <view wx:if="{{ showShare }}" class="shade" bindtap="onClose"></view>
</view>