From 88979a68c20a8ccb34c2df9103f0f52bb9e5ecf0 Mon Sep 17 00:00:00 2001 From: Zikai Date: Sun, 12 Jul 2026 15:41:56 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=8E=BB=E6=8E=89=E3=80=8C=E4=BD=9C?= =?UTF-8?q?=E5=93=81=E9=9B=86=E3=80=8D=E4=B8=8E=E3=80=8C=E8=A7=92=E8=89=B2?= =?UTF-8?q?/=E4=B8=BB=E5=BC=80=E5=8F=91=E3=80=8D=E5=AD=97=E6=A0=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 品牌栏与页面标题移除「作品集」副标题,仅保留 Zikai - HeroSection 移除「角色: 主开发/Lead Developer」meta 项 - TeamCard 移除成员角色(主开发/开发/团队),仅显示姓名 - 清理 i18n locales 中无用的 subtitle 字段及 App.vue 对应样式 --- index.html | 2 +- src/App.vue | 10 ---------- src/i18n/locales/en.js | 1 - src/i18n/locales/zh-CN.js | 1 - src/modules/mobile-game/components/HeroSection.vue | 7 +------ src/modules/mobile-game/components/TeamCard.vue | 9 --------- src/modules/mobile-game/data/team.js | 10 +++++----- 7 files changed, 7 insertions(+), 33 deletions(-) diff --git a/index.html b/index.html index 42ef759..3a53423 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - Zikai · 作品集 + Zikai
diff --git a/src/App.vue b/src/App.vue index 2531440..5605156 100644 --- a/src/App.vue +++ b/src/App.vue @@ -10,8 +10,6 @@ import LanguageSwitcher from './components/LanguageSwitcher.vue'
Z {{ $t('app.title') }} - · - {{ $t('app.subtitle') }}
@@ -73,14 +71,6 @@ import LanguageSwitcher from './components/LanguageSwitcher.vue' font-size: 0.95rem; font-weight: 700; } -.brand__sep { - color: var(--text-tertiary); -} -.brand__sub { - color: var(--text-secondary); - font-weight: 400; - font-size: 0.92rem; -} .main { flex: 1; diff --git a/src/i18n/locales/en.js b/src/i18n/locales/en.js index 3d12065..0a08e8a 100644 --- a/src/i18n/locales/en.js +++ b/src/i18n/locales/en.js @@ -3,7 +3,6 @@ export default { app: { title: 'Zikai', - subtitle: 'Portfolio', nav: { projects: 'Projects', language: 'Language' diff --git a/src/i18n/locales/zh-CN.js b/src/i18n/locales/zh-CN.js index 1ed1b80..1ddbcd3 100644 --- a/src/i18n/locales/zh-CN.js +++ b/src/i18n/locales/zh-CN.js @@ -2,7 +2,6 @@ export default { app: { title: 'Zikai', - subtitle: '作品集', nav: { projects: '项目', language: '语言' diff --git a/src/modules/mobile-game/components/HeroSection.vue b/src/modules/mobile-game/components/HeroSection.vue index ff80433..c4ea0bc 100644 --- a/src/modules/mobile-game/components/HeroSection.vue +++ b/src/modules/mobile-game/components/HeroSection.vue @@ -7,8 +7,7 @@ const { locale } = useI18n({ useScope: 'global' }) const meta = { course: { zh: '迈阿密大学 · 毕设 448 / 449', en: 'Miami University · Capstone 448 / 449' }, stack: { zh: 'Unity · C# · WebGL · Android · PHP', en: 'Unity · C# · WebGL · Android · PHP' }, - period: '2022', - role: { zh: '主开发', en: 'Lead Developer' } + period: '2022' } @@ -35,10 +34,6 @@ const meta = { {{ locale === 'zh-CN' ? '时间' : 'Period' }} {{ meta.period }} -
- {{ locale === 'zh-CN' ? '角色' : 'Role' }} - {{ locale === 'zh-CN' ? meta.role.zh : meta.role.en }} -
diff --git a/src/modules/mobile-game/components/TeamCard.vue b/src/modules/mobile-game/components/TeamCard.vue index 867a090..c64d22a 100644 --- a/src/modules/mobile-game/components/TeamCard.vue +++ b/src/modules/mobile-game/components/TeamCard.vue @@ -1,9 +1,5 @@