works.wxml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <view>
  2. <video class="videoSection" src="http://efunvideo.ai160.com/vs2m/001/00103075/00103075012/00103075012.m3u8" controls show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video>
  3. <view class="readAuthorSection">
  4. <image class="avatar" src="../../../static/image/timg.jpg" />
  5. <text class="nickName">萝莉小猫咪</text>
  6. <view class="like">
  7. <image src="../../../static/image/liked.png" />
  8. <text class="likeBtn">点赞</text>
  9. </view>
  10. <view class="follow">
  11. <text class="followBtn" bindtap="follow">关注</text>
  12. </view>
  13. </view>
  14. <view class="userSection">
  15. <view class="peopleNum">
  16. <image class="peoplesIcon" src="../../../static/image/peoples.png" />
  17. <view class="title">共有12345人完成了录音</view>
  18. </view>
  19. <scroll-view scroll-x class="scrollWrapper" scroll-with-animation="true">
  20. <view class="avatarRow">
  21. <view class="userItem" wx:for="{{user}}" wx:key="{{index}}">
  22. <image src="{{item.image}}" bindtap="goToOthers" data-uid = "{{item.uid}}" />
  23. </view>
  24. </view>
  25. </scroll-view>
  26. </view>
  27. <view class="commentSection">
  28. <view class="title">评论(38)</view>
  29. <input class="commentInput" bindconfirm="sendHandler" confirm-type="send" placeholder="听了这么多,说点什么吧" bindinput="inputValue"></input>
  30. </view>
  31. <view class="commentArea">
  32. <view class="commentItem" >
  33. <image class="avatar" src="../../../static/image/timg.jpg" />
  34. <view class="commentCore">
  35. <text class="nickName">阿尔萨斯</text>
  36. <text class="time">10-18 09:56</text>
  37. <text class="gut">{{text}}</text>
  38. <view class="commentAll" bindtap="goToDetail" data-id="1" data-num="8">共有123条评论</view>
  39. </view>
  40. <view class="btnWrapper">
  41. <image class="commentBtn" src="../../../static/image/comment.png" />
  42. <text class="commentText">评论</text>
  43. <image class="likeBtn" src="../../../static/image/like.png" />
  44. <text class="likeText">165</text>
  45. </view>
  46. </view>
  47. </view>
  48. <view class="footSection">
  49. <image class="blackbord" src="../../../static/image/blackbord.png" />
  50. <view class="collectBtn footerBtn">
  51. <image src="../../../static/image/bonus.png" />
  52. <text>奖励</text>
  53. </view>
  54. <view class="readingBtn footerBtn" bindtap="goToReading">
  55. <image class="microphone" src="../../../static/image/microphone.png" />
  56. <text>我要朗读</text>
  57. </view>
  58. <view class="shareBtn footerBtn">
  59. <button open-type="share" plain="true" hover-class="none" >
  60. <image src="../../../static/image/share.png" />
  61. <text>分享</text>
  62. </button>
  63. </view>
  64. </view>
  65. </view>