feat: migrate static pages to native tabbar

This commit is contained in:
2026-04-23 21:25:24 +08:00
parent f3cd0c3a98
commit cd30f57f2c
116 changed files with 7143 additions and 311 deletions

View File

@@ -0,0 +1,28 @@
<view class="mingli-book-page">
<view class="hero-card">
<view class="hero-card__cover">{{coverText}}</view>
<view class="hero-card__body">
<text class="hero-card__title">{{book.title}}</text>
<text class="hero-card__subtitle">{{book.subtitle}}</text>
<view class="hero-card__button" bindtap="handlePrimaryTap">进入阅读</view>
</view>
</view>
<view class="section-card">
<text class="section-card__title">目录预览</text>
<text class="section-card__item" wx:for="{{catalog}}" wx:key="index">{{item}}</text>
</view>
<view class="section-card">
<text class="section-card__title">相关推荐</text>
<view
class="section-card__recommend"
wx:for="{{recommends}}"
wx:key="key"
data-route="{{item.route}}"
bindtap="handleRecommendTap"
>
{{item.title}}
</view>
</view>
</view>