12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <!--pages/details/details.wxml-->
- <view class="details">
- <scroll-view class="details-scroll" scroll-y>
- <view class="details-video">
- <video id="myVideo" src="http://efunvideo.ai160.com/vs2m/061/06104039/06104039001/06104039001.m3u8" controls page-gesture objectFit="fill"></video>
- </view>
- <view class="menu">
- <view class="menu-item" style="width: 116rpx;" bindtap="favorites">
- <image src="{{favoritesFlag ? '../../static/image/Collection.png' : '../../static/image/no-Collection.png'}}"></image>
- </view>
- <view class="menu-item">
- <image src="../../static/image/share.png"></image>
- </view>
- <view class="menu-item" bindtap="commentAnthology">
- <image src="../../static/image/Anthology.png"></image>
- </view>
- <view class="menu-item" bindtap="commentDetails">
- <image src="../../static/image/details.png"></image>
- </view>
- </view>
- <view class="comment">
- <view class="anthology" hidden="{{anthologyHide}}">
- <view wx:for="{{courseWareList}}" wx:key="{{index}}" class="collection">
- {{item.sort}}
- </view>
- </view>
- <view class="comment-details" hidden="{{detailsHide}}">
- {{summary}}
- </view>
- <view class="pinglun" hidden="{{!hide}}" bindtap="pinglun">点击参与评论</view>
- <view class="input-box" hidden="{{hide}}">
- <input placeholder="在这里输入你想说的话" type='text' maxlength="-1" bindinput="focus" value="{{str}}"/>
- <view class="btn">
- <view class="no" bindtap="no">放弃</view>
- <view class="yes" bindtap="yes">发送</view>
- </view>
- </view>
- <view class="content-speak">
- <view class="information-item">
- <image class="head" src=""></image>
- <view class="name">
- <text>阿杰</text>
- <text>2018年9月10日</text>
- </view>
- </view>
- <view class="language">
- 非常好看的纪录片,推荐给大家
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
|