k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<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="batchDown" 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 wx:if="{{ isShowPoster }}" class="card_wrap">
    <view class="img1">
      <image mode="widthFix" src="{{posterUrl}}"></image>
    </view>
    <view class="content">
      <view class="title">—— 分享话术 ——</view>
      <view class="line">{{ rightIcon }}精品案例{{ leftIcon }}</view>
      <view class="line">🥇精益求精,品质生活🥇</view>
      <view class="line">汇集全国优秀设计师获奖案例</view>
      <view class="line">👉各种风格灵感案例上万套👈</view>
      <view class="line">总有一套能打动您,适合您</view>
    </view>
    <view class="btns">
      <view class="btn" bind:tap="closeCard">取消</view>
      <view class="btn save" bind:tap="saveCard">复制话术并保存海报</view>
    </view>
  </view>
  <van-overlay z-index="99998" show="{{ isShowPoster }}" bind:click="onClickHide" />
</view>