collage-details.wxml 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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" wx:if="{{colonelName}}">团长{{colonelName}}发起团购</view>
  27. <view class="shengyu-num" hidden="{{surplusNum == '0'}}">还需邀请<text>{{surplusNum}}</text>名好友拼团成功</view>
  28. <!--
  29. <view class="shengyu-num" hidden="{{surplusNum == '0'}}">即可获得一年级语文同步辅导(上学期)</view>
  30. -->
  31. <view class="shengyu-num" hidden="{{surplusNum != '0'}}">拼团成功!快去朗读吧</view>
  32. <view class="shengyu-time" >
  33. 剩余时间:
  34. <view class="time">
  35. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  36. <text>{{timeList[0]}}</text>
  37. </view>
  38. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  39. <view class="time">
  40. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  41. <text>{{item}}</text>
  42. </view>
  43. </block>
  44. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  45. <view class="time">
  46. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  47. <text>{{item}}</text>
  48. </view>
  49. </block>
  50. </view>
  51. </view>
  52. <view class="invitation-btn" bindtap="openShare">
  53. <image src="../../../static/groupImg/Invitation.png"></image>
  54. <text>{{read ? '开始你的表演' : '邀请朋友参加'}}</text>
  55. </view>
  56. </view>
  57. <view class="explain">
  58. <text>拼团规则</text>
  59. <view style="margin-top:30rpx;">转发给自己的朋友们,分享好课, 追随您一起学习进步 您的魅力不是吹的</view>
  60. <view style="margin-top:20rpx;">在限定时间内成功拼团,您将得到xx元的奖励金</view>
  61. <view>如果拼团失败 </view>
  62. <view style="margin-top:20rpx;">您预付的课程费将在48小时内退回您的账户</view>
  63. </view>
  64. </view>
  65. <canvas canvas-id="myCanvas" style="width:375px; height: 668px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  66. <shareDialog id="share-dialog" shareType='group' shareId="{{orderId}}"/>
  67. <popup
  68. typeOf="sendSuccess"
  69. title="报告团长"
  70. headTextTwo="您发起的团购已经成立,订单号:12345"
  71. content="{{content}}"
  72. ></popup>