<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>
|