index.wxml 847 B

123456789101112131415
  1. <view class="worksBox">
  2. <!-- 作品列表 -->
  3. <canvas id='share' type="2d"> </canvas>
  4. <block wx:if="{{list.length>0}}">
  5. <videoPreview wx:for="{{list}}" wx:key="index" videoInfo="{{item}}" index='{{index}}' currentId="{{currentId}}" data-id="{{item.userRead.id}}" bind:playVideo="playVideo" bind:changStatus="changStatus" bind:getList="getSelfRead" bind:openComment="openComment">
  6. </videoPreview>
  7. </block>
  8. <emptyBg wx:if="{{list.length==0}}" message='您还没有作品哦,赶快去发表吧!'></emptyBg>
  9. <view class="comment_section" catchtouchmove="touchMove" catchtap="commentTap" data-type="blank" wx:if="{{commentShow}}">
  10. <view class="comment_close" data-type='blank'>
  11. ×
  12. </view>
  13. <Comment commentId="{{commentId}}" bindsendReply="sendReply" />
  14. </view>
  15. </view>