collage-details.wxml 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!-- pages/groupPage/collage-details/collage-details.wxml -->
  2. <view class="collage-details">
  3. <!-- <view class="step">
  4. <image src="../../../static/groupImg/step.png"></image>
  5. <view class="txt">
  6. <text>1.支付成功</text>
  7. <text>2.邀请朋友参加</text>
  8. <text>3.去朗读</text>
  9. </view>
  10. </view> -->
  11. <view class="details-head">
  12. <view class="headImg">
  13. <block wx:for="{{joinUserList}}" wx:key="{{index}}">
  14. <view class="headImg-item {{organizerUid == item.uid ? 'bg-boder' : ''}}">
  15. <!-- <image wx:if="{{organizerUid == item.uid}}" class="tuanzhangIcon" src="../../../static/groupImg/tuanzhangIcon.png"></image> -->
  16. <view wx:if="{{organizerUid == item.uid}}" class="organizerIcon">团长</view>
  17. <image src="{{item.avatar}}"></image>
  18. </view>
  19. </block>
  20. <block wx:for="{{surplusList}}" wx:key="{{index}}">
  21. <view class="headImg-item">
  22. <image src="../../../static/groupImg/no_head.png"></image>
  23. </view>
  24. </block>
  25. </view>
  26. <view class="data-loading" wx:if="{{dataLoading}}">
  27. <view class="line1"></view>
  28. <view class="line2"></view>
  29. <view class="line3"></view>
  30. </view>
  31. <view class="shengyu" wx:if="{{!dataLoading}}">
  32. <view class="shengyu-num" wx:if="{{colonelName}}">{{colonelName}}发起{{groupOsType === 'IOS' ? '助力' : '团购'}}</view>
  33. <view class="shengyu-num" hidden="{{surplusNum == '0' || !stillGoing}}">
  34. 仅剩
  35. <text>{{surplusNum}}</text>
  36. 个名额就{{groupOsType === 'IOS' ? '助力' : '团购'}}成功了
  37. </view>
  38. <view class="shengyu-num" hidden="{{stillGoing}}">团购已超过时限</view>
  39. <view class="shengyu-num" hidden="{{surplusNum != '0'}}">{{groupOsType === 'IOS' ? '助力' : '团购'}}成功!快去朗读吧</view>
  40. <view class="shengyu-time" hidden="{{surplusNum == '0'}}">
  41. 剩余时间:
  42. <block wx:for="{{timeList[0]}}" wx:key="{{index}}">
  43. <view class="time">
  44. <text>{{item}}</text>
  45. </view>
  46. </block>
  47. 小时
  48. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  49. <view class="time">
  50. <text>{{item}}</text>
  51. </view>
  52. </block>
  53. 分钟
  54. </view>
  55. </view>
  56. <view class="invitation-btn" bindtap="openShare">
  57. <!-- <image src="../../../static/groupImg/Invitation.png"></image> -->
  58. <text>{{read ? '开始你的表演' : '邀请朋友参加'}}</text>
  59. </view>
  60. <view class="explain" wx:if="{{groupOsType === 'IOS' ? false : true}}">
  61. <text style="fontSize:44rpx;">拼团规则</text>
  62. <view style="margin-top:30rpx;">转发给自己的朋友们,分享好课,追随您一起学习进步</view>
  63. <view>您的魅力不是吹的</view>
  64. <view style="margin-top:20rpx;">在限定时间内成功拼团,团长将得到{{rewardMoney}}元的奖励金</view>
  65. <view style="margin-top:20rpx;">如果拼团失败</view>
  66. <view >您预付的课程费将在48小时内退回您的账户</view>
  67. </view>
  68. <view class="explain" wx:if="{{groupOsType === 'IOS' ? true : false}}">
  69. <text style="fontSize:44rpx;">助力规则</text>
  70. <view style="margin-top:30rpx;">转发给自己的朋友们,分享好课,追随您一起学习进步</view>
  71. <view>您的魅力不是吹的</view>
  72. <view style="margin-top:20rpx;">在限定时间内成功助力,团长将得到三年使用权</view>
  73. <view style="margin-top:20rpx;">助力者将得到七天的试用权</view>
  74. <!-- <view style="margin-top:20rpx;">如果拼团失败</view> -->
  75. <!-- <view >您预付的课程费将在48小时内退回您的账户</view> -->
  76. </view>
  77. </view>
  78. </view>
  79. <canvas canvas-id="myCanvas" style="width:375px; height: 668px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  80. <shareDialog id="share-dialog" shareType='group' shareId="{{orderId}}" />
  81. <popup typeOf="sendSuccess" title="报告团长" headTextTwo='您发起的团购已经成立,订单号:{{orderId}}' content="{{content}}"></popup>
  82. <goBackHome id="goBackHome" shareType="{{goBackHome}}" wx:if="{{goBackHome}}" />