| 12345678910111213141516171819202122232425262728293031 |
- <!--pages/history/history.wxml-->
- <view class="container">
- <view class="loading" wx:if="{{loading}}">
- <text>加载中...</text>
- </view>
-
- <view class="history-grid" wx:elif="{{history.length > 0}}">
- <view
- class="history-item"
- wx:for="{{history}}"
- wx:key="contentId"
- data-id="{{item.contentId}}"
- bindtap="goToDetail"
- >
- <image class="cover" src="{{item.coverUrl}}" mode="aspectFill" lazy-load="{{true}}"></image>
- <view class="book-info">
- <view class="book-title">{{item.title}}</view>
- <view class="author">{{item.author || '未知作者'}}</view>
- <view class="time">{{item.readTime}}</view>
- </view>
- </view>
- </view>
-
- <view class="empty" wx:else>
- <text>暂无阅读历史</text>
- </view>
-
- <view class="footer" wx:if="{{history.length > 0 && !loading}}">
- <button class="clear-btn" bindtap="clearHistory">清空历史</button>
- </view>
- </view>
|