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.
36 lines
2.0 KiB
36 lines
2.0 KiB
<!--pages/lookup/lookfile/lookfile.wxml-->
|
|
<!--pages/lookup/lookimg/img.wxml-->
|
|
<!--utils/video/video.wxml-->
|
|
<view class="main">
|
|
<image bindtap="seefile" wx:if="{{data.filetype==='word'}}" mode="widthFix" style="width: 750rpx;" src="../../../images/img_word@2x.png"></image>
|
|
<image bindtap="seefile" wx:if="{{data.filetype==='excel'}}" mode="widthFix" style="width: 750rpx;" src="../../../images/img_excel@2x.png"></image>
|
|
<image bindtap="seefile" wx:if="{{data.filetype==='pdf'}}" mode="widthFix" style="width: 750rpx;" src="../../../images/img_pdf@2x.png"></image>
|
|
<image bindtap="seefile" wx:if="{{data.filetype==='ppt'}}" mode="widthFix" style="width: 750rpx;" src="../../../images/img_ppt@2x.png"></image>
|
|
<view class="bottom">
|
|
<view class="title">{{data.title}}</view>
|
|
<view class="cards">
|
|
<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>
|
|
</view>
|
|
<view class="operation" wx:if="{{shou}}">
|
|
<button class="one" plain="{{true}}" open-type="share">
|
|
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_fx_bs@2x.png"></image>
|
|
分享
|
|
</button>
|
|
<button class="one" wx:if="{{data.isCollected===0}}" plain="{{true}}" bindtap="add">
|
|
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_sc_bs@2x.png"></image>
|
|
收藏
|
|
</button>
|
|
<button class="one" wx:if="{{data.isCollected}}" plain="{{true}}" bindtap="del">
|
|
<image style="width: 48rpx;height: 48rpx;" src="/images/ic_shouc@2x.png"></image>
|
|
取消收藏
|
|
</button>
|
|
<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>
|
|
保存
|
|
</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|