123456789101112131415161718192021 |
- <!--component/documentItem/documentItem.wxml-->
- <view>
- <view class="topLayout">
- <view class="topLayout_ImgLayout">
- <image wx:if="{{type==1}}" src="../../image/document/document_video.png" class="topLayout_ImgLayout_img"></image>
- <image wx:elif="{{type==0}}" src="../../image/document/document_img.png" class="topLayout_ImgLayout_img"></image>
- <text class="topLayout_ImgLayout_text">{{itemData.title}} 回看</text>
- </view>
- <view class="topLayout_ImgLayout_more" bindtap="showActionWindow">
- <image src="../../image/teacher/file_more.png" class="topLayout_ImgLayout_more_img"></image>
- </view>
- </view>
- <view class="timeLayout">
- <text class="timeLayout_time">起止时间:{{itemData.created}}</text>
- <text wx:if="{{hasDownLoad}}" class="timeLayout_download_text">{{downLoadProgress}}</text>
- </view>
- <view class="playerLayout">
- <video wx:if="{{type==1}}" class="player" src="{{itemData.url}}" autoplay="{{false}}"> </video>
- <image wx:elif=" {{type==0}}" class="player" style="background-color: sienna;" src="{{itemData.url}}"></image>
- </view>
- </view>
|