index.wxml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <view class="pkBox">
  2. <videoPreview videoInfo="{{videoInfo}}" currentId="{{currentId}}" data-id="{{videoInfo.userRead.id}}"
  3. bind:playVideo="playVideo" bind:openComment="openComment" videoType='pk' />
  4. <!-- 挑战记录列表 -->
  5. <view class="pkRecord">
  6. <view class="title">挑战记录</view>
  7. <scroll-view scroll-y="true" class="scrollBox" enhanced="true" show-scrollbar="{{false}}">
  8. <view class="record" wx:for="{{20}}" wx:key="index">
  9. <view class="record-left">
  10. <view class="rl-avatar">
  11. <image src="/static/contact.png" mode="" class="avatar" />
  12. </view>
  13. <view class="rl-info">
  14. <view class="nickName">叮当猫</view>
  15. <view class="time">2023-02-12 13:13</view>
  16. </view>
  17. </view>
  18. <view class="record-right">
  19. <view class="score">
  20. 96分
  21. </view>
  22. <image src="/static/play.png" class="play" mode="" />
  23. </view>
  24. </view>
  25. </scroll-view>
  26. </view>
  27. <Comment id="comment" />
  28. <canvas id='share' type="2d"> </canvas>
  29. </view>