From cfb7d2e0ea139c12e8f2eee9ef35def46da2e064 Mon Sep 17 00:00:00 2001 From: chiyi Date: Sun, 5 Jul 2026 14:51:34 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=9B=BE=E6=A0=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Icon.vue | 2 ++ frontend/src/layouts/PublicLayout.vue | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Icon.vue b/frontend/src/components/Icon.vue index a24bf38..a4eab0f 100644 --- a/frontend/src/components/Icon.vue +++ b/frontend/src/components/Icon.vue @@ -23,6 +23,8 @@ const PATHS = { shield: '', ban: '', receipt: '', + book: '', + info: '', } defineProps({ name: { type: String, required: true } }) diff --git a/frontend/src/layouts/PublicLayout.vue b/frontend/src/layouts/PublicLayout.vue index ce7578c..4186b6d 100644 --- a/frontend/src/layouts/PublicLayout.vue +++ b/frontend/src/layouts/PublicLayout.vue @@ -22,8 +22,8 @@ const nav = computed(() => { items.push({ to: '/orders', label: '订单', icon: 'receipt' }) } // 文档 + 关于 are public — visible to guests too. - items.push({ to: '/docs', label: '文档', icon: 'log' }) - items.push({ to: '/about', label: '关于', icon: 'accounts' }) + items.push({ to: '/docs', label: '文档', icon: 'book' }) + items.push({ to: '/about', label: '关于', icon: 'info' }) return items })