37 lines
1.4 KiB
Plaintext
37 lines
1.4 KiB
Plaintext
|
|
<!-- 下载页面 -->
|
|||
|
|
<view class="container">
|
|||
|
|
<!-- 下载列表 -->
|
|||
|
|
<view class="download-list" wx:if="{{downloads.length > 0}}">
|
|||
|
|
<view class="download-item"
|
|||
|
|
wx:for="{{downloads}}"
|
|||
|
|
wx:key="id">
|
|||
|
|
<view class="item-content" bindtap="goDetail" data-id="{{item.id}}">
|
|||
|
|
<image class="item-cover" src="{{dataBaseUrl}}{{item.coverurl}}" mode="aspectFill"></image>
|
|||
|
|
<view class="item-info">
|
|||
|
|
<text class="item-title text-ellipsis-2">{{item.title}}</text>
|
|||
|
|
<text class="item-category">{{item.category_name}}</text>
|
|||
|
|
<text class="item-time">下载时间: {{item.downloadTimeStr}}</text>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
<view class="item-actions">
|
|||
|
|
<view class="action-btn" bindtap="openFile" data-index="{{index}}">
|
|||
|
|
<text>打开</text>
|
|||
|
|
</view>
|
|||
|
|
<view class="action-btn delete" bindtap="deleteItem" data-index="{{index}}">
|
|||
|
|
<text>删除</text>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
|
|||
|
|
<!-- 空状态 -->
|
|||
|
|
<view class="empty-state" wx:else>
|
|||
|
|
<image class="empty-img" src="/images/icons/empty-download.png" mode="aspectFit"></image>
|
|||
|
|
<text class="empty-title">暂无下载记录</text>
|
|||
|
|
<text class="empty-desc">浏览练习表并下载PDF文件后,将在此处显示</text>
|
|||
|
|
<view class="empty-btn" bindtap="goHome">
|
|||
|
|
<text>去浏览</text>
|
|||
|
|
</view>
|
|||
|
|
</view>
|
|||
|
|
</view>
|