From fa1a22b286e5bd6dcb167e83c5bfe7325f521d88 Mon Sep 17 00:00:00 2001 From: R2m1liA <15258427350@163.com> Date: Fri, 19 Dec 2025 11:17:32 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9C=8D=E5=8A=A1=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E9=A1=B5=E6=87=92=E5=8A=A0=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 骨架屏调整:服务支持页骨架屏布局调整 - 懒加载:服务支持页添加懒加载机制 --- app/pages/support/contact-us.vue | 10 ++--- app/pages/support/documents.vue | 27 ++++++++++--- app/pages/support/faq.vue | 65 +++++++++++++++++++------------- 3 files changed, 65 insertions(+), 37 deletions(-) diff --git a/app/pages/support/contact-us.vue b/app/pages/support/contact-us.vue index 7812c9c..442a6c3 100644 --- a/app/pages/support/contact-us.vue +++ b/app/pages/support/contact-us.vue @@ -6,7 +6,10 @@ -
+
+ +
+
@@ -17,9 +20,6 @@
-
- -
@@ -31,7 +31,7 @@ { label: $t('navigation.support'), to: localePath('/support') }, { label: $t('navigation.contact-info') }, ]; - const { data: contactInfo, pending, error } = await useContactInfo(); + const { data: contactInfo, pending, error } = useContactInfo(); watch(error, (value) => { if (value) { diff --git a/app/pages/support/documents.vue b/app/pages/support/documents.vue index 5bf8fd3..3c42a6d 100644 --- a/app/pages/support/documents.vue +++ b/app/pages/support/documents.vue @@ -1,15 +1,30 @@