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.
18 lines
692 B
18 lines
692 B
<view class="container">
|
|
<text>课堂资源</text>
|
|
<view class="no-file-view">
|
|
<image hidden="{{files.length!=0 || loading}}" src="{{imgDir}}/blank2.png" class="no-file"></image>
|
|
</view>
|
|
<view class="file-list form-wrap">
|
|
<block wx:for="{{files}}" wx:for-item="file" wx:key="objectId">
|
|
<view class="file-item flex-wrap" bindtap="previewFile" data-url="{{file.url}}">
|
|
<text>{{file.title}}</text>
|
|
<text class="hint file-uploader">上传者:{{file.author.name}}</text>
|
|
</view>
|
|
</block>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{false}}" class="upload-file foot">
|
|
<button type="primary" size="mini" bindtap="upload">上传文件资源</button>
|
|
</view>
|