|
|
@@ -387,13 +387,18 @@
|
|
|
</view>
|
|
|
|
|
|
<!-- ===== 推荐阅读(书册风格) ===== -->
|
|
|
- <ArticleBookshelf
|
|
|
- :articles="indexArticles"
|
|
|
- :loading="articlesLoading"
|
|
|
- :isLoggedIn="isLoggedIn"
|
|
|
- @articleClick="goArticleDetail"
|
|
|
- @moreArticles="goArticles"
|
|
|
- />
|
|
|
+ <view class="article-section animate-fade-in animate-stagger-11">
|
|
|
+ <view class="article-header">
|
|
|
+ <view class="section-title">📖 推荐阅读</view>
|
|
|
+ <text class="article-more" @click="goArticles">更多 ›</text>
|
|
|
+ </view>
|
|
|
+ <ArticleBookshelf
|
|
|
+ :articles="indexArticles"
|
|
|
+ :loading="articlesLoading"
|
|
|
+ :isLoggedIn="isLoggedIn"
|
|
|
+ @articleClick="goArticleDetail"
|
|
|
+ />
|
|
|
+ </view>
|
|
|
|
|
|
<!-- ===== h) 待审核任务 ===== -->
|
|
|
<view class="review-section animate-fade-in animate-stagger-11" v-if="pendingReviewTasks.length > 0">
|
|
|
@@ -1810,6 +1815,9 @@ export default {
|
|
|
align-items: center;
|
|
|
margin-bottom: var(--space-md);
|
|
|
}
|
|
|
+.article-header .section-title {
|
|
|
+ margin-bottom: 0;
|
|
|
+}
|
|
|
.article-more {
|
|
|
font-size: 26rpx;
|
|
|
color: var(--color-primary, #F97316);
|