You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
1.5 KiB

3 years ago
<!--utils/video/video.wxml-->
<view class="main">
3 years ago
<video style="width: 100%;" src="{{data.fileUrl?cdn+data.fileUrl:cdn+data.teachRefeFileUrl}}" autoplay></video>
3 years ago
<view class="bottom">
3 years ago
<view class="title">{{data.title}}</view>
3 years ago
<view class="cards">
3 years ago
<view class="card" wx:for="{{data.brandList}}" wx:key="index" data-type="1" data-mes="{{item}}" bindtap="to">{{item.name}}</view>
<view class="card" wx:for="{{data.tagList}}" wx:key="index" data-type="2" data-mes="{{item}}" bindtap="to">{{item.title}}</view>
3 years ago
</view>
3 years ago
<view class="operation" wx:if="{{shou}}">
3 years ago
<button class="one" plain="{{true}}" open-type="share">
3 years ago
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_fx_bs@2x.png"></image>
3 years ago
分享
3 years ago
</button>
3 years ago
<button class="one" wx:if="{{data.isCollected===0}}" plain="{{true}}" bindtap="add">
3 years ago
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_sc_bs@2x.png"></image>
3 years ago
收藏
3 years ago
</button>
<button class="one" wx:if="{{data.isCollected}}" plain="{{true}}" bindtap="del">
3 years ago
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_shouc@2x.png"></image>
3 years ago
取消收藏
</button>
3 years ago
<button class="one" plain="{{true}}" data-url="{{data.fileUrl?cdn+data.fileUrl:cdn+data.teachRefeFileUrl}}" bindtap="downloadfile">
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_bc_bs@2x.png"></image>
3 years ago
保存
3 years ago
</button>
3 years ago
</view>
</view>
</view>