history.wxml 954 B

12345678910111213141516171819202122232425262728293031
  1. <!--pages/history/history.wxml-->
  2. <view class="container">
  3. <view class="loading" wx:if="{{loading}}">
  4. <text>加载中...</text>
  5. </view>
  6. <view class="history-grid" wx:elif="{{history.length > 0}}">
  7. <view
  8. class="history-item"
  9. wx:for="{{history}}"
  10. wx:key="contentId"
  11. data-id="{{item.contentId}}"
  12. bindtap="goToDetail"
  13. >
  14. <image class="cover" src="{{item.coverUrl}}" mode="aspectFill" lazy-load="{{true}}"></image>
  15. <view class="book-info">
  16. <view class="book-title">{{item.title}}</view>
  17. <view class="author">{{item.author || '未知作者'}}</view>
  18. <view class="time">{{item.readTime}}</view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="empty" wx:else>
  23. <text>暂无阅读历史</text>
  24. </view>
  25. <view class="footer" wx:if="{{history.length > 0 && !loading}}">
  26. <button class="clear-btn" bindtap="clearHistory">清空历史</button>
  27. </view>
  28. </view>