sharetofirend.wxml 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <!--pages/sharetofirend/sharetofirend.wxml-->
  2. <nav-bar navbar-data="{{navbarData}}"></nav-bar>
  3. <!-- 团长详情-分享到朋友圈 -->
  4. <view class="con" wx:if="{{type === 0}}">
  5. <view class="con-top">
  6. <view class="header">
  7. <van-image round width="70px" height="70px" fit="cover" src="{{user_info.headimg}}" />
  8. <p>{{user_info.name}}</p>
  9. </view>
  10. <view class="tag-body">
  11. <view class="tag-b-info" wx:for="{{classification_info}}" style="width: {{item.length <= 3 ? 90:137}}rpx;">
  12. <view class="tag-b-con">{{item}}</view>
  13. </view>
  14. </view>
  15. <view class="intro-body">
  16. <text>{{user_info.introduction}}</text>
  17. </view>
  18. <view class="current">
  19. <view class="line" style="display: flex;align-items: center;">
  20. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  21. <view style="width: 336rpx;height: 6rpx;background-color: #FF874E;"></view>
  22. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  23. </view>
  24. <view class="current-text" style="margin-top: 18rpx;margin-bottom: 32rpx;text-align: center;font-weight: 600;">
  25. <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>
  26. </view>
  27. <view class="line" style="display: flex;align-items: center;">
  28. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  29. <view style="width: 336rpx;height: 6rpx;background-color: #FF874E;"></view>
  30. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  31. </view>
  32. </view>
  33. <view class="center">
  34. <!-- <image show-menu-by-longpress src="{{user_info.wechat_code}}"></image> -->
  35. <image show-menu-by-longpress src="{{pintuan_detail.gang_code}}"></image>
  36. </view>
  37. <view class="foot">
  38. 扫一扫或长按识别二维码进入卖家首页
  39. </view>
  40. </view>
  41. <button class="con-but">保存图片</button>
  42. </view>
  43. <!-- 拼团详情-分享到朋友圈 -->
  44. <view class="con" wx:if="{{type === 1}}">
  45. <view class="con-top">
  46. <view class="current">
  47. <view class="line" style="display: flex;align-items: center;">
  48. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  49. <view style="width: 584rpx;height: 6rpx;background-color: #FF874E;"></view>
  50. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  51. </view>
  52. <view class="current-text" style="font-weight: 600;width: 560rpx;margin: 22rpx auto;">
  53. <text>{{pintuan_detail.gang_name}}</text>
  54. </view>
  55. <view class="line" style="display: flex;align-items: center;">
  56. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  57. <view style="width: 584rpx;height: 6rpx;background-color: #FF874E;"></view>
  58. <view style="width: 18rpx;height: 18rpx;border-radius: 50%;background-color: #FF874E;"></view>
  59. </view>
  60. </view>
  61. <view class="intro-body">
  62. <text>{{pintuan_detail.gang_describe}}</text>
  63. </view>
  64. <view class="share-image">
  65. <van-image width="296" height="173" radius="40rpx" src="{{pintuan_detail.gang_big_img}}" />
  66. </view>
  67. <view class="center" style="margin-top: 30rpx;">
  68. <image show-menu-by-longpress src="{{pintuan_detail.gang_code}}"></image>
  69. </view>
  70. <view class="foot" wx:if="{{type == 0}}">
  71. 扫一扫或长按识别二维码进入卖家首页
  72. </view>
  73. <view class="foot" wx:if="{{type == 1}}">
  74. 扫一扫或长按识别二维码进入拼团
  75. </view>
  76. </view>
  77. <button class="con-but" wx:if="{{type == 0}}" catchtap="downloadImg">保存图片</button>
  78. <button class="con-but" wx:if="{{type == 1}}" catchtap="downloadImg2">保存图片</button>
  79. </view>