Skip to content

Commit a59766a

Browse files
committed
add:新增运营组
1 parent 5a7895b commit a59766a

File tree

3 files changed

+74
-0
lines changed

3 files changed

+74
-0
lines changed

docs/.vitepress/config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,10 @@ export default defineConfig({
6969
{ text: "后端", link: "/be/" },
7070
{ text: "产品", link: "/product/" },
7171
{ text: "设计", link: "/design/" },
72+
{ text: "运营", link: "/op/" },
7273
{ text: "计算机基础", link: "/cs/" },
74+
75+
7376
// { text: "软技能", link: "/soft/" },
7477
// { text: "求职", link: "/job/" },
7578
],
@@ -207,6 +210,15 @@ export default defineConfig({
207210
],
208211
},
209212
],
213+
"/op/": [
214+
{
215+
text: "运营",
216+
items: [
217+
{ text: "运营组简介", link: "/op/" },
218+
{ text: "团队成员", link: "/op/team" },
219+
],
220+
},
221+
],
210222
},
211223
},
212224
});

docs/op/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# 运营组简介
2+
3+
// TODO 简介
4+
5+
### 培养方案介绍
6+

docs/op/team.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
---
2+
layout: page
3+
---
4+
5+
<script setup>
6+
import {
7+
VPTeamPage,
8+
VPTeamPageTitle,
9+
VPTeamMembers,
10+
VPTeamPageSection
11+
} from 'vitepress/theme';
12+
const members2024 = [
13+
14+
{
15+
avatar: 'https://muxi-avatar.muxixyz.com//operation/xuemiao.jpg',
16+
name: '薛淼',
17+
desc: `人生哪,能不能放过我这一次~`,
18+
org: '信管学院',
19+
links: []
20+
}
21+
]
22+
const members2023 = [
23+
{
24+
avatar: 'https://muxi-avatar.muxixyz.com//operation/zhanglibin.jpg',
25+
name: '张丽彬',
26+
desc: `事已至此,先吃饭吧`,
27+
org: '计算机学院',
28+
links: []
29+
},
30+
]
31+
32+
33+
34+
35+
</script>
36+
37+
<VPTeamPage>
38+
<VPTeamPageTitle>
39+
<template #title>木犀团队 运营组</template>
40+
<template #lead>...</template>
41+
</VPTeamPageTitle>
42+
<VPTeamPageSection>
43+
<template #title>2024 级</template>
44+
<template #lead>...</template>
45+
<template #members>
46+
<VPTeamMembers size="small" :members="members2024"/>
47+
</template>
48+
</VPTeamPageSection>
49+
<VPTeamPageSection>
50+
<template #title>2023 级</template>
51+
<template #lead>...</template>
52+
<template #members>
53+
<VPTeamMembers size="small" :members="members2023"/>
54+
</template>
55+
</VPTeamPageSection>
56+
</VPTeamPage>

0 commit comments

Comments
 (0)