ertonglianxibiao/pages/download/download.wxml

37 lines
1.4 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- 下载页面 -->
<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>