collage-details.wxml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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="shengyu">
  27. <view class="shengyu-num" wx:if="{{colonelName}}">团长{{colonelName}}发起团购</view>
  28. <view class="shengyu-num" hidden="{{surplusNum == '0' || !stillGoing}}">仅剩<text>{{surplusNum}}</text>个名额就拼团成功了</view>
  29. <view class="shengyu-num" hidden="{{stillGoing}}">团购已超过时限</view>
  30. <view class="shengyu-num" hidden="{{surplusNum != '0'}}">拼团成功!快去朗读吧</view>
  31. <view class="shengyu-time" hidden="{{!stillGoing}}">
  32. 剩余时间:
  33. <view class="time">
  34. <text>{{timeList[0]}}</text>
  35. </view>
  36. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  37. <view class="time">
  38. <text>{{item}}</text>
  39. </view>
  40. </block>
  41. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  42. <view class="time">
  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="explain">
  54. <text>拼团规则</text>
  55. <view style="margin-top:30rpx;">转发给自己的朋友们,分享好课, 追随您一起学习进步 您的魅力不是吹的</view>
  56. <view style="margin-top:20rpx;">在限定时间内成功拼团,您将得到{{rewardMoney}}元的奖励金</view>
  57. <view>如果拼团失败 </view>
  58. <view style="margin-top:20rpx;">您预付的课程费将在48小时内退回您的账户</view>
  59. </view>
  60. </view>
  61. <canvas canvas-id="myCanvas" style="width:375px; height: 668px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  62. <shareDialog id="share-dialog" shareType='group' shareId="{{orderId}}"/>
  63. <popup
  64. typeOf="sendSuccess"
  65. title="报告团长"
  66. headTextTwo='您发起的团购已经成立,订单号:{{orderId}}'
  67. content="{{content}}"
  68. ></popup>