diff --git a/src/components/uh-scroll-top/uh-scroll-top.vue b/src/components/uh-scroll-top/uh-scroll-top.vue
index 8306e6c..a006f65 100644
--- a/src/components/uh-scroll-top/uh-scroll-top.vue
+++ b/src/components/uh-scroll-top/uh-scroll-top.vue
@@ -15,7 +15,7 @@
diff --git a/src/pages/tabbar/about/about.vue b/src/pages/tabbar/about/about.vue
index c61cb8c..872ec13 100644
--- a/src/pages/tabbar/about/about.vue
+++ b/src/pages/tabbar/about/about.vue
@@ -1,329 +1,348 @@
-
-
-
-
-
-
-
-
- {{ bloggerInfo.nickname }}
-
-
- {{ bloggerInfo.description || '这个博主很懒,竟然没写介绍~' }}
-
-
-
-
+
+
+
+
+
+
+
+
+ {{ bloggerInfo.nickname }}
+
+
+ {{ bloggerInfo.description || '这个博主很懒,竟然没写介绍~' }}
+
+
+
+
-
-
-
-
- {{ item.value }}
-
-
- {{ item.label }}
-
-
-
+
+
+
+
+ {{ item.value }}
+
+
+ {{ item.label }}
+
+
+
-
-
-
- {{ group.title }}
-
-
-
-
-
-
-
- {{ nav.title }}
-
-
- {{ nav.rightText }}
-
-
-
-
-
+
+
+
+ {{ group.title }}
+
+
+
+
+
+
+
+ {{ nav.title }}
+
+
+ {{ nav.rightText }}
+
+
+
+
+
-
-
- {{ copyrightConfig.content }}
-
-
-
\ No newline at end of file
+
+
+ {{ copyrightConfig.content }}
+
+
+
diff --git a/src/pages/tabbar/category/category.vue b/src/pages/tabbar/category/category.vue
index 78639b2..8c85ccf 100644
--- a/src/pages/tabbar/category/category.vue
+++ b/src/pages/tabbar/category/category.vue
@@ -4,6 +4,7 @@ import { onPullDownRefresh, onReachBottom } from '@dcloudio/uni-app'
import { getCategoryList } from '@/api/halo'
import { useAppConfigStore } from '@/store/appConfig'
import { checkThumbnailUrl } from '@/utils/url'
+import { sleep } from '@/utils/common'
import { t } from '@/locale'
import { DataLoadingStatusEnum, useDataLoadingStatus } from '@/hooks/useDataLoadingStatus'
import type { ICategory } from '@/api/types/halo'
@@ -50,6 +51,8 @@ function handleInitPage() {
/* ---------------- 数据加载 ---------------- */
async function handleGetData() {
updateLoadingStatus(DataLoadingStatusEnum.Loading)
+ // 增加延迟,提升用户体验
+ await sleep(800)
// 审核模式
if (calcAuditModeEnabled.value) {
const auditCategoryNames = appConfigStore.auditData.spec?.categories || []
diff --git a/src/pages/tabbar/gallery/gallery.vue b/src/pages/tabbar/gallery/gallery.vue
index f0f41bb..d53b73a 100644
--- a/src/pages/tabbar/gallery/gallery.vue
+++ b/src/pages/tabbar/gallery/gallery.vue
@@ -1,250 +1,250 @@
-
-
-
-
-
-
- {{ cate.spec.displayName }}({{cate.status?.photoCount??0}})
-
-
-
+
+
+
+
+
+
+ {{ cate.spec.displayName }}({{ cate.status?.photoCount ?? 0 }})
+
+
+
-
-
-
-
+
+
+
+
-
-
-
-
- 刷新试试
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{ loadMoreText }}
-
-
-
-
-
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ loadMoreText }}
+
+
+
+
+
+
diff --git a/src/pages/tabbar/home/home.vue b/src/pages/tabbar/home/home.vue
index 25dcdd7..b26f8f5 100644
--- a/src/pages/tabbar/home/home.vue
+++ b/src/pages/tabbar/home/home.vue
@@ -1,227 +1,227 @@
-
-
-
-
-
+
+
+
+
+
-
-
-
+
+
+
-
-
-
-
-
+
+
-
-
+
+
-
-
- 最新内容
-
-
-
-
-
-
+
+
-
-
-
-
-
-
-
-
- {{ loadMoreText }}
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
+
+ 最新内容
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ loadMoreText }}
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/tabbar/moments/moments.vue b/src/pages/tabbar/moments/moments.vue
index e4e6a98..1e5e0a4 100644
--- a/src/pages/tabbar/moments/moments.vue
+++ b/src/pages/tabbar/moments/moments.vue
@@ -278,14 +278,9 @@
-
-
-
-
-
-
+
{
+ return new Promise(resolve => setTimeout(resolve, ms));
+}
\ No newline at end of file