make-money.wxml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. <view class="time">
  24. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  25. <text>{{timeList[0]}}</text>
  26. </view>
  27. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  28. <view class="time">
  29. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  30. <text>{{item}}</text>
  31. </view>
  32. </block>
  33. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  34. <view class="time">
  35. <!-- <image src="../../../static/groupImg/Rectangle_31.png"></image> -->
  36. <text>{{item}}</text>
  37. </view>
  38. </block>
  39. </view>
  40. </view>
  41. <view class="invitation-btn" bindtap="share">
  42. <image src="../../../static/groupImg/Invitation.png"></image>
  43. <text>邀请朋友参加</text>
  44. </view>
  45. </view>
  46. <canvas canvas-id="myCanvas" style="width:375px; height: 668px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  47. <shareDialog id="share-dialog" shareType='group' bindcustomevent="eventListener"/>