works.wxml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <view>
  2. <view class="videoSection" wx:if="{{!isIOS}}">
  3. <cover-image wx:if="{{!videoLoad}}" class="video-playBtn" bindtap="videoPlayHandler" src="../../../static/image/play-btn.png"></cover-image>
  4. <image wx:if="{{!videoLoad}}" class="videoIcon" src="{{iconImg}}" />
  5. <video wx:if="{{videoLoad}}" id="worksVideo" class="videoSection" src="{{videoSrc}}" bindplay="videoPlay" bindended="videoEnd" bindpause="videoPause" muted="false" controls="false" enable-progress-gesture="{{gesture}}" show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video>
  6. </view>
  7. <!-- <video wx:if="{{isIOS}}" id="worksVideo" class="videoSection" src="{{videoUrl}}" autoPlay="{{autoPlay}}" controls="{{controls}}" show-center-play-btn="{{centerBtn}}" show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video> -->
  8. <video wx:if="{{isIOS}}" id="worksVideo" class="videoSection" src="{{videoSrc}}" bindplay="videoPlay" bindended="videoEnd" bindpause="videoPause" muted="false" controls="false" enable-progress-gesture="{{gesture}}" show-fullscreen-btn="{{fullScreenBtn}}" show-play-btn="{{playBtn}}"></video>
  9. <view class="readAuthorSection">
  10. <image class="avatar" src="{{authorAvatar}}" bindtap="goToUsers" data-uid="{{authorUid}}" />
  11. <view class="profession" wx:if="{{authorProfession}}">{{authorProfession}}</view>
  12. <text class="nickName" bindtap="goToUsers" data-uid="{{authorUid}}">{{author}}</text>
  13. <view class="like" bindtap="likeWorks" wx:if="{{authorUid !== myUid}}">
  14. <image src="{{isLike? '../../../static/image/red_like.png' :'../../../static/image/red_like_empty.png' }}" />
  15. <text class="likeBtn">{{isLike ? '已' : ''}}点赞</text>
  16. </view>
  17. <view class="follow" wx:if="{{authorUid !== myUid}}">
  18. <image src="{{isFans? '../../../static/image/fully_heart.png' : '../../../static/image/empty_heart.png'}}" />
  19. <text class="followBtn" bindtap="follow">{{isFans ? '已' : ''}}关注</text>
  20. </view>
  21. </view>
  22. <view class="userSection">
  23. <view class="peopleNum">
  24. <image class="peoplesIcon" src="../../../static/image/peoples.png" />
  25. <view class="title">共有{{totalRead}}人完成了录音</view>
  26. </view>
  27. <scroll-view scroll-x class="scrollWrapper" scroll-with-animation="true">
  28. <view class="avatarRow">
  29. <view class="userItem" wx:for="{{user}}" wx:key="{{index}}">
  30. <image src="{{item.image}}" bindtap="goToOthers" lazy-load="true" data-uid="{{item.uid}}" data-title="{{item.title}}" />
  31. </view>
  32. </view>
  33. </scroll-view>
  34. </view>
  35. <view class="commentSection">
  36. <view class="title">评论({{total}})</view>
  37. <input class="commentInput" bindconfirm="sendHandler" confirm-type="send" placeholder="听了这么多,说点什么吧" bindinput="inputValue"></input>
  38. </view>
  39. <view class="commentArea">
  40. <view class="commentItem" wx:for="{{replyList}}" wx:key="{{index}}">
  41. <view class="avatar-wrapper" bindtap="goToUsers" data-uid="{{item.uid}}">
  42. <image class="avatar" src="{{item.avatar}}" />
  43. <view class="profession" wx:if="{{item.profession}}">{{item.profession}}</view>
  44. </view>
  45. <view class="commentCore">
  46. <text class="nickName">{{item.nickName}}</text>
  47. <text class="time">{{item.time}}</text>
  48. <text class="gut">{{item.text}}</text>
  49. <view class="commentAll" bindtap="goToDetail" data-id="{{item.id}}" data-count="{{item.replyCount}}" wx:if="{{item.replyCount}}">
  50. 共有{{item.replyCount}}条评论
  51. </view>
  52. </view>
  53. <view class="btnWrapper">
  54. <!-- <image class="commentBtn" src="../../../static/image/comment.png" bindtap="goToDetail" data-count="{{item.replyCount}}" data-id="{{item.id}}" data-index="{{index}}" />
  55. <text class="commentText" bindtap="goToDetail" data-id="{{item.id}}" data-count="{{item.replyCount}}" data-index="{{index}}">评论</text> -->
  56. <image class="likeBtn" src="../../../static/image/like.png" data-index="{{index}}" data-likes="{{item.likes}}" data-id="{{item.id}}" bindtap="likeCommend" />
  57. <text class="likeText" data-index="{{index}}" data-likes="{{item.likes}}" data-id="{{item.id}}" bindtap="likeCommend">{{item.likes}}
  58. </text>
  59. <image class="commentBtn" src="../../../static/image/comment.png" bindtap="goToDetail" data-id="{{item.id}}" data-index="{{index}}" />
  60. <text class="commentText" bindtap="goToDetail" data-id="{{item.id}}" data-index="{{index}}">回复
  61. </text>
  62. </view>
  63. </view>
  64. </view>
  65. <view class="footSection">
  66. <image class="blackbord" src="../../../static/image/blackbord.png" />
  67. <view class="collectBtn footerBtn" bindtap="reward">
  68. <image src="../../../static/image/bonus.png" />
  69. <text>奖励</text>
  70. </view>
  71. <view class="readingBtn footerBtn" bindtap="goToReading">
  72. <image class="microphone" src="../../../static/image/microphone.png" />
  73. <text>我要朗读</text>
  74. </view>
  75. <view class="shareBtn footerBtn" bindtap="openShare">
  76. <!-- <button open-type="share" plain="true" hover-class="none">
  77. <image src="../../../static/image/share.png" />
  78. <text>分享</text>
  79. </button> -->
  80. <image src="../../../static/image/share.png" />
  81. <text>分享</text>
  82. </view>
  83. </view>
  84. <!-- 分享框 -->
  85. <!-- <canvas canvas-id="myCanvas" style="width:750rpx;z-index=99999; height: 1334rpx;"></canvas> -->
  86. <canvas canvas-id="myCanvas" style="width:375px;z-index=99999; height: 667px; position: absolute; left: -999rpx; top: -9999rpx;"></canvas>
  87. <shareDialog id="share-dialog" shareType='works' shareId="{{id}}" />
  88. <!-- 评论框 -->
  89. <view class="replySection" wx:if="{{replyModal}}">
  90. <input bindblur="bindTextAreaBlur" bindconfirm="replySB" confirm-type="send" placeholder="回复" bindinput="inputSBValue" auto-focus auto-height />
  91. </view>
  92. <!-- 奖励弹窗 -->
  93. <cover-view class="modalWrapper" wx:if="{{ifReward}}">
  94. <cover-view class="rewardContent">
  95. <cover-image class="rewardWrapper" src="../../../static/image/reward_wrapper.png" />
  96. <cover-image class="rewardAvatar" src="{{authorAvatar}}" />
  97. <!-- <cover-view class="rewardNickName">奖励给朗读者:{{author}}</cover-view> -->
  98. <cover-view class="rewardNickName">播音主持特长生</cover-view>
  99. <cover-view class="sologan">声情并茂 悦耳动听</cover-view>
  100. <cover-view class="moneyArea">
  101. <cover-view class="{{howMuch ==='100' ? 'money moneySelect' : 'money moneyNormal'}}" bindtap="setMoney" data-money="100">
  102. 1.0元
  103. </cover-view>
  104. <cover-view class="{{howMuch ==='200' ? 'money moneySelect' : 'money moneyNormal'}}" bindtap="setMoney" data-money="200">
  105. 2.0元
  106. </cover-view>
  107. <cover-view class="{{howMuch ==='300' ? 'money moneySelect' : 'money moneyNormal'}}" bindtap="setMoney" data-money="300">
  108. 3.0元
  109. </cover-view>
  110. </cover-view>
  111. <cover-view class="rewardBtn" bindtap="rewardMoney">立即奖励</cover-view>
  112. </cover-view>
  113. <cover-image class="quitBtn" bindtap="quitReward" src="../../../static/groupImg/cha.png" />
  114. </cover-view>
  115. <!-- 回到首页弹窗 -->
  116. <!-- <view class="goBackHome" bindtap="goBackHome" wx:if="{{goBackHome}}">
  117. <image src="../../../static/image/goBackHome.png" />
  118. </view> -->
  119. <goBackHome id="goBackHome" shareType="{{goBackHome}}" wx:if="{{goBackHome}}" />
  120. </view>