From 8f027e97e10a2a37f07aeac539575dce443d9010 Mon Sep 17 00:00:00 2001 From: Leo_Ding <2405260743@qq.com> Date: Thu, 4 Dec 2025 17:28:31 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8F=9C=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/admin/home/index.vue | 15 +++++++++------ src/views/document/index.vue | 2 +- src/views/layout/index.vue | 2 +- 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/src/views/admin/home/index.vue b/src/views/admin/home/index.vue index b2ee936..c20c8be 100644 --- a/src/views/admin/home/index.vue +++ b/src/views/admin/home/index.vue @@ -129,14 +129,14 @@
- 查看更多问题 + 查看更多问题
@@ -230,11 +230,14 @@ onBeforeMount(() => { }) // 常见问题列表 const faqList = ref([ - { id: 1, question: '如何选择GPU?' }, - { id: 2, question: '如何上传数据?' }, - { id: 3, question: '如何开具发票?' }, - { id: 4, question: '如何成为炼丹会员?' }, + { id: 1, question: '如何选择GPU?',path:'/document/select' }, + { id: 2, question: '如何快速开始?',path:'/document/start' }, + { id: 3, question: '学术资源加速?',path:'/document/study' }, + { id: 4, question: '容器示例?',path:'/document/summary' }, ]) +const goToDocument = () => { + window.open('/document', '_blank'); +};