works.wxml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <view>
  2. 用户作品
  3. <video class="videoSection" src="http://efunvideo.ai160.com/vs2m/001/00103075/00103075012/00103075012.m3u8" controls show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video>
  4. <view class="readAuthorSection">
  5. <image class="avatar" src="../../../static/image/timg.jpg" />
  6. <text class="nickName">萝莉小猫咪</text>
  7. <view class="like">
  8. <image src="../../../static/image/liked.png" />
  9. <text class="likeBtn">点赞</text>
  10. </view>
  11. <view class="follow">
  12. <text class="followBtn">关注</text>
  13. </view>
  14. </view>
  15. <view class="userSection">
  16. <view class="title">共有12345人完成了录音</view>
  17. <view class="avatarRow">
  18. <view class="userItem" wx:for="{{user}}" wx:key="{{index}}">
  19. <image src="{{item.image}}" />
  20. <text class="nickName">{{item.nickName}}</text>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="commentSection">
  25. <view class="title">
  26. 评论(38)
  27. </view>
  28. <input class="commentInput" placeholder="听了这么多,说点什么吧"/>
  29. <view class="commentArea">
  30. <view class="commentItem">
  31. <iamge class="avatar" />
  32. <text class="nickName"></text>
  33. <text class="time"></text>
  34. <text class="gut"></text>
  35. <view class="commentBtn">
  36. <image class="" />
  37. <text >评论</text>
  38. </view>
  39. <view class="likes">
  40. <image class="" />
  41. <text >165</text>
  42. </view>
  43. <view class="commentAll">
  44. 共有123条评论
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <view class="footSection">
  50. <view class="collectBtn footerBtn">
  51. <image src="../../../static/image/hot_recommand.png" />
  52. <text>收藏</text>
  53. </view>
  54. <view class="readingBtn footerBtn" bindtap="goToReading">
  55. <image src="../../../static/image/hot_recommand.png" />
  56. <text>我要朗读</text>
  57. </view>
  58. <view class="shareBtn footerBtn">
  59. <image src="../../../static/image/hot_recommand.png" />
  60. <text>分享</text>
  61. </view>
  62. </view>
  63. </view>