From 6b410fc91f310005e7ac4d472126bd199f8ddbb6 Mon Sep 17 00:00:00 2001 From: chendi <2187434671@qq.com> Date: Fri, 22 Aug 2025 17:18:59 +0800 Subject: [PATCH] =?UTF-8?q?0822=E4=B8=8B=E6=96=B9=E7=9A=84=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E7=BB=8F=E5=8E=86=E5=AE=8C=E6=88=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 2 +- {src/assets => public}/images/hero-bg.jpg | Bin src/components/timeline/CompanyTimeline.vue | 12 ++++++------ src/locales/ja.ts | 10 +++++----- src/locales/zh.ts | 9 ++++----- src/views/HomePage.vue | 2 +- 6 files changed, 17 insertions(+), 18 deletions(-) rename {src/assets => public}/images/hero-bg.jpg (100%) diff --git a/index.html b/index.html index e94e068..b567a52 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ - + Vite + Vue + TS diff --git a/src/assets/images/hero-bg.jpg b/public/images/hero-bg.jpg similarity index 100% rename from src/assets/images/hero-bg.jpg rename to public/images/hero-bg.jpg diff --git a/src/components/timeline/CompanyTimeline.vue b/src/components/timeline/CompanyTimeline.vue index 887162d..6015007 100644 --- a/src/components/timeline/CompanyTimeline.vue +++ b/src/components/timeline/CompanyTimeline.vue @@ -29,37 +29,37 @@ export interface TimelineEvent { const timelineEvents = ref([ { id: 1, - date: '2015', + date: '2022', title: "timelineEvents.timelineEvent1.title", description: "timelineEvents.timelineEvent1.description", }, { id: 2, - date: '2016', + date: '2022', title: "timelineEvents.timelineEvent2.title", description: "timelineEvents.timelineEvent2.description", }, { id: 3, - date: '2018', + date: '2023', title: "timelineEvents.timelineEvent3.title", description: "timelineEvents.timelineEvent3.description", }, { id: 4, - date: '2020', + date: '2024', title: "timelineEvents.timelineEvent4.title", description: "timelineEvents.timelineEvent4.description", }, { id: 5, - date: '2022', + date: '2025', title: "timelineEvents.timelineEvent5.title", description: "timelineEvents.timelineEvent5.description", }, { id: 6, - date: '2023', + date: '2025', title: "timelineEvents.timelineEvent6.title", description: "timelineEvents.timelineEvent6.description", }, diff --git a/src/locales/ja.ts b/src/locales/ja.ts index 6a9bd9d..b8c889e 100644 --- a/src/locales/ja.ts +++ b/src/locales/ja.ts @@ -1,9 +1,9 @@ export default { nav: { home: 'ホーム', - about: '会社概要', - team: 'チーム紹介', - projects: 'プロジェクト', + about: 'スタジオ概要', + team: 'メンバー紹介', + projects: '開発実績', contact: 'お問い合わせ', }, about: { @@ -20,7 +20,7 @@ export default { advantage4: '信頼性', }, team: { - title: 'チーム紹介', + title: 'メンバー紹介', memberRole: '役職', memberBio: 'プロフィール', member1: {name: "陳 迪",role: "スタジオ代表", @@ -110,7 +110,7 @@ export default { error: 'メッセージの送信に失敗しました。もう一度お試しください。', }, timeline: { - title: '会社の沿革', + title: '実績', }, diff --git a/src/locales/zh.ts b/src/locales/zh.ts index e0ff648..f722db4 100644 --- a/src/locales/zh.ts +++ b/src/locales/zh.ts @@ -25,10 +25,9 @@ export default { memberBio: '简介', member1: { name: "陈迪",role: "工作室总负责人", - bio:`拥有日本留学与职业背景:先后就读于秋田大学及名古屋大学大学院,毕业后入职日本大型商社,在国际化商业环境中积累了宝贵的实战经验, + bio:`先后就读于秋田大学及名古屋大学大学院,毕业后入职日本大型商社,在国际化商业环境中积累了宝贵的实战经验, 归国后,历任 BPO 项目管理岗位,主导过对日业务流程外包的全流程统筹,凭借对日本客户需求的精准把握,确保项目交付质量与效率双重达标; - 后转型投身软件 开发领域,先后担任 SE、BSE及 PM,深度参与从需求分析、系统设计到开发落地的全生命周期管理,在 Web 开发、系统搭建等 - 方面积累了丰富的技术实操经验。`}, + 后转型投身软件 开发领域,先后担任 SE、BSE及 PM,深度参与从需求分析、系统设计到开发落地的全生命周期管理,在 Web 开发、系统搭建等方面积累了丰富的技术实操经验。`}, member2: {name: "梁伟",role: "技术总负责人", bio:`拥有 10 年以上 web 开发经验,长期专注对日项目。精通前端 Vue、React、JavaScript 及 HTML5,后端 Java、Python 及 Spring Boot、 Django 等框架,深谙日本技术标准与业务逻辑。​主导过电商、企业管理系统等多领域大型项目,从需求分析到架构设计、开发落地全流程把控, @@ -77,7 +76,7 @@ export default { }, timelineEvent2: { title: "机票管理系统", - description: "首个对日项目(一部分参与)", + description: "首个对日项目(一部分)参与", }, timelineEvent3: { title: "地图扩展系统", @@ -107,6 +106,6 @@ export default { error: '发送留言失败,请重试。', }, timeline: { - title: '公司历程', + title: '项目经历', }, } \ No newline at end of file diff --git a/src/views/HomePage.vue b/src/views/HomePage.vue index 38b8ec3..cc3054c 100644 --- a/src/views/HomePage.vue +++ b/src/views/HomePage.vue @@ -53,7 +53,7 @@ const t = inject<(key: string) => string>('t') || ((key) => key) align-items: center; justify-content: center; text-align: center; - background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('@/src/assets/images/hero-bg.jpg'); /* 绝对路径,基于项目根目录 */ + background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/hero-bg.jpg'); /* 绝对路径,基于项目根目录 */ background-size: cover; background-position: center; background-attachment: fixed;