12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <!--pages/sharetofirend/sharetofirend.wxml-->
- <nav-bar navbar-data="{{navbarData}}"></nav-bar>
- <!-- 团长详情-分享到朋友圈 -->
- <view class="con" wx:if="{{type === 0}}">
- <view class="con-top">
- <view class="header">
- <van-image round width="70px" height="70px" fit="cover" src="{{user_info.headimg}}" />
- <p>{{user_info.name}}</p>
- </view>
- <view class="tag-body">
- <view class="tag-b-info" wx:for="{{classification_info}}" style="width: {{item.length <= 3 ? 90:137}}rpx;">
- <view class="tag-b-con">{{item}}</view>
- </view>
- </view>
- <view class="intro-body">
- <text>{{user_info.introduction}}</text>
- </view>
- <view class="current">
- <view class="line" style="display: flex;align-items: center;">
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- <view style="width: 336rpx;height: 6rpx;background-color: #FF874E;"></view>
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- </view>
- <view class="current-text" style="margin-top: 18rpx;margin-bottom: 32rpx;text-align: center;font-weight: 600;">
- <text style="font-size: 52rpx;color: #FF874E;">{{info.gang_number}}</text><text>个进行中的拼团\n跟团人数共</text><text style="font-size: 52rpx;color: #FF874E;">{{info.gang_user_number}}</text>
- </view>
- <view class="line" style="display: flex;align-items: center;">
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- <view style="width: 336rpx;height: 6rpx;background-color: #FF874E;"></view>
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- </view>
- </view>
- <view class="center">
- <!-- <image show-menu-by-longpress src="{{user_info.wechat_code}}"></image> -->
- <image show-menu-by-longpress src="{{pintuan_detail.gang_code}}"></image>
- </view>
- <view class="foot">
- 扫一扫或长按识别二维码进入卖家首页
- </view>
- </view>
- <button class="con-but">保存图片</button>
- </view>
- <!-- 拼团详情-分享到朋友圈 -->
- <view class="con" wx:if="{{type === 1}}">
- <view class="con-top">
- <view class="current">
- <view class="line" style="display: flex;align-items: center;">
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- <view style="width: 584rpx;height: 6rpx;background-color: #FF874E;"></view>
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- </view>
- <view class="current-text" style="font-weight: 600;width: 560rpx;margin: 22rpx auto;">
- <text>{{pintuan_detail.gang_name}}</text>
- </view>
- <view class="line" style="display: flex;align-items: center;">
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- <view style="width: 584rpx;height: 6rpx;background-color: #FF874E;"></view>
- <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
- </view>
- </view>
- <view class="intro-body">
- <text>{{pintuan_detail.gang_describe}}</text>
- </view>
- <view class="share-image">
- <van-image width="296" height="173" radius="40rpx" src="{{pintuan_detail.gang_big_img}}" />
- </view>
- <view class="center" style="margin-top: 30rpx;">
- <image show-menu-by-longpress src="{{pintuan_detail.gang_code}}"></image>
- </view>
- <view class="foot" wx:if="{{type == 0}}">
- 扫一扫或长按识别二维码进入卖家首页
- </view>
- <view class="foot" wx:if="{{type == 1}}">
- 扫一扫或长按识别二维码进入拼团
- </view>
- </view>
- <button class="con-but" wx:if="{{type == 0}}" catchtap="downloadImg">保存图片</button>
- <button class="con-but" wx:if="{{type == 1}}" catchtap="downloadImg2">保存图片</button>
- </view>
|