aa
jiangping
2024-08-02 7dc29ed74ebaa8a0e66f68264d9a13f95dc3af21
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
<view>
  <!-- 名片 -->
  <idCard users="{{ info.users }}" wx:if="{{ origin != 'b' && info.users && info.users.id }}" />
  <view class="container" style="padding-top: {{ origin != 'b' && info.users && info.users.id ? '148' : '0' }}rpx;">
    <view class="main_title">{{ info.title }}</view>
    <view class="time">发布时间:{{ info.publishDt }}</view>
    <image data-url="{{ item }}" bindtap="priviewSpace" class="info_item" wx:for="{{ info.contentImgList }}" src="{{ item }}" mode="widthFix"></image>
    <view class="desc">{{ info.contentText || '' }}</view>
    <view wx:if="{{ origin && origin == 'b' }}">
      <button open-type="share" style="bottom: {{bottomLift + 6}}px;" class="share_btn">分享</button>
    </view>
    <view wx:else class="footer" style="padding-bottom: {{bottomLift}}px;">
      <view class="btns">
        <button class="item btn">
          <image data-code="collect_cancel" bindtap="handleAction" wx:if="{{ info.isCollection }}" class="icon" src="../../static/icon/detail_nav_collected.png" mode="widthFix"></image>
          <image wx:else data-code="collect" bindtap="handleAction" class="icon" src="../../static/icon/detail_nav_collect.png" mode="widthFix"></image>
          <view class="name">收藏</view>
        </button>
        <button open-type="share" class="item btn" bindtap="handleShare">
          <image class="icon" src="../../static/icon/detail_nav_share.png" mode="widthFix"></image>
          <view class="name">分享</view>
        </button>
        <view class="sub_btn" bindtap="handleDesign">
          <image class="sheji" src="../../static/icon/ic_sheji.png" mode="widthFix"></image>
          <view>免费预约专属设计</view>
        </view>
      </view>
    </view>
  </view>
</view>