make-money.wxml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!--pages/groupPage/make-money/make-money.wxml-->
  2. <view class="details-head">
  3. <view class="headImg">
  4. <block wx:for="{{joinUserList}}" wx:key="{{index}}">
  5. <view class="headImg-item {{organizerUid == item.uid ? 'bg-boder' : ''}}">
  6. <image wx:if="{{organizerUid == item.uid}}" class="tuanzhangIcon" src="../../../static/groupImg/tuanzhangIcon.png"></image>
  7. <image src="{{item.avatar}}"></image>
  8. </view>
  9. </block>
  10. <block wx:for="{{surplusList}}" wx:key="{{index}}">
  11. <view class="headImg-item">
  12. <image src="../../../static/groupImg/no_head.png"></image>
  13. </view>
  14. </block>
  15. </view>
  16. <view class="shengyu">
  17. <view class="shengyu-num">仅剩<text>{{surplusNum}}</text>个名额就拼团成功了</view>
  18. <view class="shengyu-time">
  19. 剩余时间:
  20. <view class="time">
  21. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  22. <text>{{timeList[0]}}</text>
  23. </view>
  24. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  25. <view class="time">
  26. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  27. <text>{{item}}</text>
  28. </view>
  29. </block>
  30. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  31. <view class="time">
  32. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  33. <text>{{item}}</text>
  34. </view>
  35. </block>
  36. </view>
  37. </view>
  38. <view class="invitation-btn" bindtap="share">
  39. <image src="../../../static/groupImg/Invitation.png"></image>
  40. <text>邀请朋友参加</text>
  41. </view>
  42. </view>
  43. <canvas canvas-id="myCanvas" style="width:370px; height: 507px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  44. <shareDialog id="share-dialog" shareType='group' bindcustomevent="eventListener"/>