book-min/miniprogram/pages/index/index.wxml

31 lines
889 B
Plaintext

<!--index.wxml-->
<scroll-view class="scrollarea" scroll-y type="list">
<view class="container">
<!-- 顶部标题栏 -->
<view class="header">
<text class="title">阅读管理</text>
</view>
<!-- 书籍列表 -->
<view class="book-list">
<view class="book-item"
wx:for="{{recentBooks}}"
wx:key="id"
bindtap="openBook"
data-id="{{item.id}}"
data-url="{{item.bookUrl}}">
<image class="book-cover" src="{{item.coverUrl}}" mode="aspectFill"/>
<view class="book-info">
<text class="book-title">{{item.title}}</text>
<text class="book-author">{{item.author}}</text>
</view>
</view>
</view>
<!-- 添加按钮 -->
<view class="add-btn" bindtap="goToBookshelf">
<text class="add-icon">+</text>
</view>
</view>
</scroll-view>