1
1
<script setup>
2
2
import CategorySecond from ' /src/components/CategorySecond.vue' ;
3
+ import AppLink from ' ../../components/AppLink.vue' ;
3
4
4
5
const navigationList = [
5
6
{
@@ -19,6 +20,52 @@ const navigationList = [
19
20
hash: ' #others'
20
21
}
21
22
];
23
+
24
+ const aosccList = [
25
+ {
26
+ year: 2025 ,
27
+ title: ' 上海交通大学(2025 年 7 月 26 - 27 日)' ,
28
+ hasLink: true
29
+ },
30
+ { year: 2024 , title: ' 吉林大学(2024 年 7 月 13 - 14 日)' , hasLink: true },
31
+ {
32
+ year: 2023 ,
33
+ title: ' 上海科技大学(2023 年 7 月 15 - 16 日)' ,
34
+ hasLink: true
35
+ },
36
+ {
37
+ year: 2022 ,
38
+ title: ' 由于新冠肺炎疫情,于线上举办(2022 年 9 月 17 日)' ,
39
+ hasLink: true
40
+ },
41
+ {
42
+ year: 2021 ,
43
+ title: ' 由于新冠肺炎疫情,于线上举办(2021 年 9 月 19 - 20 日)' ,
44
+ hasLink: true
45
+ },
46
+ {
47
+ year: 2020 ,
48
+ title: ' 由于新冠肺炎疫情,于线上举办(2020 年 9 月 25 - 26 日)' ,
49
+ hasLink: true
50
+ },
51
+ {
52
+ year: 2019 ,
53
+ title: ' 中国科学技术大学(2019 年 7 月 12 - 14 日)' ,
54
+ hasLink: true
55
+ },
56
+ {
57
+ year: 2018 ,
58
+ title: ' 于线上举办(2018 年 7 月 21 日)' ,
59
+ hasLink: true
60
+ },
61
+ {
62
+ year: 2017 ,
63
+ title: ' 广东工业大学(2017 年 7 月 14 - 16 日)' ,
64
+ hasLink: true
65
+ },
66
+ { year: 2016 , title: ' 上海科技大学(2016 年 7 月)' , hasLink: false },
67
+ { year: 2015 , title: ' 深圳长虹科技大厦(2015 年 7 月)' , hasLink: false }
68
+ ];
22
69
</script >
23
70
24
71
<template >
@@ -50,65 +97,11 @@ const navigationList = [
50
97
</p >
51
98
<div class =" px-16 pt-4 pb-4" >
52
99
<ul class =" list-disc" >
53
- <li
54
- ><b >2024 年:</b
55
- ><a
56
- class =" text-[#0056cc] no-underline"
57
- href =" https://wiki.aosc.io/zh/community/aoscc/2024/"
58
- >吉林大学(2024 年 7 月 13 - 14 日)</a
59
- ></li
60
- >
61
- <li
62
- ><b >2023 年:</b
63
- ><a
64
- class =" text-[#0056cc] no-underline"
65
- href =" https://wiki.aosc.io/zh/community/aoscc/2023/"
66
- >上海科技大学(2023 年 7 月 15 - 16 日)</a
67
- ></li
68
- >
69
- <li
70
- ><b >2022 年:</b
71
- ><a
72
- class =" text-[#0056cc] no-underline"
73
- href =" https://wiki.aosc.io/zh/community/aoscc/2022/"
74
- >由于新冠肺炎疫情,于线上举办(2022 年 9 月 17 日)</a
75
- ></li
76
- >
77
- <li
78
- ><b >2021 年:</b
79
- ><a
80
- class =" text-[#0056cc] no-underline"
81
- href =" https://wiki.aosc.io/zh/community/aoscc/2021/"
82
- >由于新冠肺炎疫情,于线上举办(2021 年 9 月 19 - 20 日)</a
83
- ></li
84
- >
85
- <li
86
- ><b >2020 年:</b
87
- ><a
88
- class =" text-[#0056cc] no-underline"
89
- href =" https://wiki.aosc.io/zh/community/aoscc/2020/"
90
- >由于新冠肺炎疫情,于线上举办(2020 年 9 月 25 - 26 日)</a
91
- ></li
92
- >
93
- <li
94
- ><b >2019 年:</b
95
- ><a
96
- class =" text-[#0056cc] no-underline"
97
- href =" https://wiki.aosc.io/zh/community/aoscc/2019/"
98
- >中国科学技术大学(2019 年 7 月 12 - 14 日)</a
99
- ></li
100
- >
101
- <li ><b >2018 年:</b >聚会取消</li >
102
- <li
103
- ><b >2017 年:</b
104
- ><a
105
- class =" text-[#0056cc] no-underline"
106
- href =" https://wiki.aosc.io/zh/community/aoscc/2017/"
107
- >广东工业大学(2017 年 7 月 14 - 16 日)</a
108
- ></li
109
- >
110
- <li ><b >2016 年:</b >上海科技大学(2016 年 7 月)</li >
111
- <li ><b >2015 年:</b >深圳长虹科技大厦(2015 年 7 月)</li >
100
+ <li v-for =" { year, title, hasLink } in aosccList" :key =" year" >
101
+ <b >{{ year }} 年:</b >
102
+ <AppLink v-if =" hasLink" :to =" `/aoscc/${year}`" >{{ title }}</AppLink >
103
+ <span v-else >{{ title }}</span >
104
+ </li >
112
105
</ul >
113
106
</div >
114
107
</div >
@@ -184,7 +177,10 @@ const navigationList = [
184
177
<p > 如下是近期规划内的“安同校园行”目的地: </p >
185
178
<div class =" px-16 pt-4 pb-4" >
186
179
<ul class =" list-disc" >
187
- <li ><b >2025 年 4 月 19 日:</b >北京站(北京大学、北京航空航天大学与中国人民大学合办)</li >
180
+ <li
181
+ ><b >2025 年 4 月 19 日:</b
182
+ >北京站(北京大学、北京航空航天大学与中国人民大学合办)</li
183
+ >
188
184
</ul >
189
185
</div >
190
186
</div >
0 commit comments