details.wxml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!--pages/details/details.wxml-->
  2. <view class="details">
  3. <scroll-view class="details-scroll" scroll-y>
  4. <view class="details-video">
  5. <video id="myVideo" src="http://efunvideo.ai160.com/vs2m/061/06104039/06104039001/06104039001.m3u8" controls page-gesture objectFit="fill"></video>
  6. </view>
  7. <view class="menu">
  8. <view class="menu-item" style="width: 116rpx;" bindtap="favorites">
  9. <image src="{{favoritesFlag ? '../../static/image/Collection.png' : '../../static/image/no-Collection.png'}}"></image>
  10. </view>
  11. <view class="menu-item">
  12. <image src="../../static/image/share.png"></image>
  13. </view>
  14. <view class="menu-item" bindtap="commentAnthology">
  15. <image src="../../static/image/Anthology.png"></image>
  16. </view>
  17. <view class="menu-item" bindtap="commentDetails">
  18. <image src="../../static/image/details.png"></image>
  19. </view>
  20. </view>
  21. <view class="comment">
  22. <view class="anthology" hidden="{{anthologyHide}}">
  23. <view wx:for="{{courseWareList}}" wx:key="{{index}}" class="collection">
  24. {{item.sort}}
  25. </view>
  26. </view>
  27. <view class="comment-details" hidden="{{detailsHide}}">
  28. {{summary}}
  29. </view>
  30. <view class="pinglun" hidden="{{!hide}}" bindtap="pinglun">点击参与评论</view>
  31. <view class="input-box" hidden="{{hide}}">
  32. <input placeholder="在这里输入你想说的话" type='text' maxlength="-1" bindinput="focus" value="{{str}}"/>
  33. <view class="btn">
  34. <view class="no" bindtap="no">放弃</view>
  35. <view class="yes" bindtap="yes">发送</view>
  36. </view>
  37. </view>
  38. <view class="content-speak">
  39. <view class="information-item">
  40. <image class="head" src=""></image>
  41. <view class="name">
  42. <text>阿杰</text>
  43. <text>2018年9月10日</text>
  44. </view>
  45. </view>
  46. <view class="language">
  47. 非常好看的纪录片,推荐给大家
  48. </view>
  49. </view>
  50. </view>
  51. </scroll-view>
  52. </view>