0822下方的项目经历完成

This commit is contained in:
chendi 2025-08-22 17:18:59 +08:00
parent 4c565ed67f
commit 6b410fc91f
6 changed files with 17 additions and 18 deletions

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!--<link rel="preload" as="image" href="/src/assets/images/hero-bg.jpg" fetchpriority="high">-->
<link rel="preload" as="image" href="/src/assets/images/hero-bg.jpg" fetchpriority="high">
<link rel="preload" as="image" href="images/hero-bg.jpg" fetchpriority="high">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + Vue + TS</title>

View File

Before

Width:  |  Height:  |  Size: 197 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View File

@ -29,37 +29,37 @@ export interface TimelineEvent {
const timelineEvents = ref<TimelineEvent[]>([
{
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",
},

View File

@ -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: '実績',
},

View File

@ -25,10 +25,9 @@ export default {
memberBio: '简介',
member1: {
name: "陈迪",role: "工作室总负责人",
bio:`拥有日本留学与职业背景:先后就读于秋田大学及名古屋大学大学院,毕业后入职日本大型商社,在国际化商业环境中积累了宝贵的实战经验,
bio:`先后就读于秋田大学及名古屋大学大学院,毕业后入职日本大型商社,在国际化商业环境中积累了宝贵的实战经验,
BPO
SEBSE及 PM Web
`},
SEBSE及 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: '项目经历',
},
}

View File

@ -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;