make-money.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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">
  6. <image src="{{item.avatar}}"></image>
  7. </view>
  8. </block>
  9. <block wx:for="{{surplusList}}" wx:key="{{index}}">
  10. <view class="headImg-item">
  11. <image src="../../../static/groupImg/no_head.png"></image>
  12. </view>
  13. </block>
  14. </view>
  15. <view class="shengyu">
  16. <view class="shengyu-num">仅剩<text>{{surplusNum}}</text>个名额就拼团成功了</view>
  17. <view class="shengyu-time">
  18. 剩余时间:
  19. <view class="time">
  20. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  21. <text>{{timeList[0]}}</text>
  22. </view>
  23. <block wx:for="{{timeList[1]}}" wx:key="{{index}}">
  24. <view class="time">
  25. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  26. <text>{{item}}</text>
  27. </view>
  28. </block>
  29. <block wx:for="{{timeList[2]}}" wx:key="{{index}}">
  30. <view class="time">
  31. <image src="../../../static/groupImg/Rectangle_31.png"></image>
  32. <text>{{item}}</text>
  33. </view>
  34. </block>
  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:370px; height: 507px; position: absolute; left: -99rpx; top: -999rpx;"></canvas>
  43. <shareDialog id="share-dialog" bindcustomevent="eventListener"/>