collage-details.wxml 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. <image src="{{item.avatar}}"></image>
  17. </view>
  18. </block>
  19. <block wx:for="{{surplusList}}" wx:key="{{index}}">
  20. <view class="headImg-item">
  21. <image src="../../../static/groupImg/no_head.png"></image>
  22. </view>
  23. </block>
  24. </view>
  25. <view class="shengyu">
  26. <view class="shengyu-num" hidden="{{surplusNum == '0'}}">仅剩<text>{{surplusNum}}</text>个名额就拼团成功了</view>
  27. <view class="shengyu-num" hidden="{{surplusNum != '0'}}">拼团成功!快去朗读吧</view>
  28. <view class="shengyu-time" >
  29. 剩余时间:
  30. <view class="time">
  31. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  32. <text>{{timeList[0]}}</text>
  33. </view>
  34. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  35. <view class="time">
  36. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  37. <text>{{item}}</text>
  38. </view>
  39. </block>
  40. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  41. <view class="time">
  42. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  43. <text>{{item}}</text>
  44. </view>
  45. </block>
  46. </view>
  47. </view>
  48. <view class="invitation-btn" bindtap="openShare">
  49. <image src="../../../static/groupImg/Invitation.png"></image>
  50. <text>{{read ? '去朗读' : '邀请朋友参加'}}</text>
  51. </view>
  52. </view>
  53. <view class="rule" style="{{hideFlag ? 'right' : 'left'}}: 0" bindtap="hide">
  54. <image src="../../../static/groupImg/rule{{hideFlag ? '1' : '2'}}.png"></image>
  55. <text>拼团规则</text>
  56. </view>
  57. <view class="explain" hidden="{{hideFlag}}">
  58. <text>拼团规则</text>
  59. * 转发给自己的朋友们,分享好课, 追随您一起学习进步。您的魅力不是吹的! * 如果拼团失败,您预付的课程费将在48小时内退回您的账户。
  60. </view>
  61. </view>
  62. <canvas canvas-id="myCanvas" style="width:370px; height: 507px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  63. <shareDialog id="share-dialog" shareType='group' shareId="{{orderId}}"/>
  64. <popup
  65. typeOf="sendSuccess"
  66. title="报告团长"
  67. headTextTwo="您发起的团购已经成立,订单号:12345"
  68. content="{{content}}"
  69. ></popup>