更新:增加买书确认订单页面

This commit is contained in:
2025-11-12 16:35:39 +08:00
parent 1daa6367c9
commit d2389b2ed1
11 changed files with 930 additions and 31 deletions

View File

@@ -7,7 +7,7 @@
light
clearable
class="search-bar"
:placeholder="$t('home.searchPlaceholder')"
:placeholder="$t('bookHome.searchPlaceholder')"
@search="handleSearch"
/>
<view class="icon-hua">
@@ -25,13 +25,13 @@
<view class="mine-block">
<!-- 我的书单 -->
<view class="mine-1">
<text class="mine-title">{{ $t('home.block1') }}</text>
<text class="mine-title">{{ $t('bookHome.block1') }}</text>
<view
v-if="myBooksList.length > 0"
class="mine-more"
@click="handleMoreClick"
>
{{ $t('home.more') }}
{{ $t('bookHome.more') }}
<image src="@/static/icon/icon_right.png" />
</view>
<view v-if="myBooksList.length > 0" class="mine-1-list">
@@ -50,7 +50,7 @@
<!-- 推荐图书 -->
<view class="mine-2">
<text class="mine-title">{{ $t('home.block2') }}</text>
<text class="mine-title">{{ $t('bookHome.block2') }}</text>
<swiper
v-if="recommendBooksList.length > 0"
autoplay
@@ -73,7 +73,7 @@
<!-- 活动图书模块 -->
<view v-if="showActivity" class="activity-block">
<text class="activity-title">{{ $t('home.activityTitle') }}</text>
<text class="activity-title">{{ $t('bookHome.activityTitle') }}</text>
<scroll-view class="scroll-view" scroll-x :show-scrollbar="false">
<view class="activity-label-list">
<view
@@ -377,11 +377,11 @@ const formatPrice = (book: IBookWithStats): string => {
*/
const formatStats = (book: IBookWithStats): string => {
if (book.readCount && book.readCount > 0) {
return `${book.readCount}${t('home.readingCount')}`
return `${book.readCount}${t('bookHome.readingCount')}`
}
if (book.buyCount && book.buyCount > 0) {
return `${book.buyCount}${t('home.purchased')}`
return `${book.buyCount}${t('bookHome.purchased')}`
}
return ''