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

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

@@ -75,11 +75,11 @@ const displayStats = computed(() => {
if (!props.showStats) return ''
if (props.book.readCount && props.book.readCount > 0) {
return `${props.book.readCount}${t('home.readingCount')}`
return `${props.book.readCount}${t('bookHome.readingCount')}`
}
if (props.book.buyCount && props.book.buyCount > 0) {
return `${props.book.buyCount}${t('home.purchased')}`
return `${props.book.buyCount}${t('bookHome.purchased')}`
}
return ''