group-details.wxml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <!--pages/group-details/group-details.wxml-->
  2. <view class="group-details">
  3. <view class="details-head" bindtap="collage">
  4. <view class="headImg">
  5. <block wx:for="{{joinUserList}}" wx:key="{{index}}">
  6. <view class="headImg-item">
  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/Mask Copy@2x.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@2x.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@2x.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@2x.png"></image>
  33. <text>{{item}}</text>
  34. </view>
  35. </block>
  36. </view>
  37. </view>
  38. </view>
  39. <scroll-view scroll-y="{{true}}">
  40. <view class="grade-details" bindtap="gradeDetails">
  41. <image src="{{titleIcon}}" ></image>
  42. <text>{{title}}</text>
  43. <text>{{bookInfo}}</text>
  44. </view>
  45. <view class="catalog">
  46. <image src="../../../static/groupImg/Rectangle 34@2x.png"></image>
  47. <text>语文目录</text>
  48. </view>
  49. <view class="catalog-list">
  50. <view class="catalog-item" wx:for="{{lessonList}}" wx:key="{{index}}" data-id="{{item.id}}" data-title="{{item.title}}">
  51. <text class="left">{{item.title}}</text>
  52. <text class="right">{{item.readingNum}}朗读 ></text>
  53. </view>
  54. </view>
  55. </scroll-view>
  56. <view class="group-details-btn">
  57. <view class="left-btn" bindtap="openGroup">
  58. 开团
  59. </view>
  60. <view class="right-btn" bindtap="jionGroup">
  61. <image src="../../../static/groupImg/Rectangle 8 Copy@2x.png"></image>
  62. <text>参团</text>
  63. </view>
  64. </view>
  65. </view>