make-money.wxml 1.8 KB

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