Skip to content

Commit 2463949

Browse files
committed
chore: 框定 Beta 交付内容范围
1 parent 49e24f3 commit 2463949

File tree

5 files changed

+9
-15
lines changed

5 files changed

+9
-15
lines changed

src/pages/home/components/Footer.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ const nowYear = new Date().getFullYear();
88
<div class="content-container">
99
<span class="pl-[0.5rem]">&copy; 安同开源社区&nbsp;&nbsp;&nbsp;&nbsp;2011 - {{ nowYear }}</span>
1010
<span class="mx-[20px]">|</span>
11-
<a href="">网页源码</a>
11+
<a href="https://github.com/AOSC-Dev/website-2023">网页源码</a>
1212
<span class="mx-[20px]">|</span>
13-
<a href="">报告内容问题</a>
13+
<a href="https://github.com/AOSC-Dev/website-2023/issues">报告内容问题</a>
1414
</div>
1515
</div>
1616
</template>

src/pages/home/components/Header.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ const languageList = reactive([
1818
<router-link to="/download">下载 AOSC OS</router-link>
1919
<span>|</span>
2020
<router-link to="/about">关于社区</router-link>
21-
<span>|</span>
21+
<!-- 尚未实现 -->
22+
<!-- <span>|</span>
2223
<section class="flex flex-col">
2324
<div
2425
class="relative overflow-hidden hover:overflow-visible h-[calc(1em+10px)] *:cursor-pointer z-[2]"
@@ -34,7 +35,7 @@ const languageList = reactive([
3435
</li>
3536
</ul>
3637
</div>
37-
</section>
38+
</section> -->
3839
</div>
3940
</div>
4041
<div class="bg-primary grow"></div>

src/pages/home/components/LeftBar.vue

+2-4
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ const linkArr = reactive([
2424
title: "资讯与支持",
2525
children: [
2626
{ title: "新闻资讯", link: "/news" },
27-
{ title: "支持中心", link: "#" },
2827
{ title: "活动相册", link: "/gallery" },
29-
{ title: "安装指南", link: "#" },
3028
{ title: "系统需求", link: "#" },
3129
{ title: "联系方式", link: "/contact" },
3230
],
@@ -37,9 +35,9 @@ const linkArr = reactive([
3735
children: [
3836
{ title: "社区简介", link: "/about" },
3937
{ title: "线下活动", link: "#" },
40-
{ title: "赞助", link: "/sponsoring" },
41-
{ title: "众筹", link: "/fund" },
4238
{ title: "实习资源", link: "#" },
39+
{ title: "赞助方一览", link: "/sponsoring" },
40+
{ title: "社区众筹", link: "/fund" },
4341
{ title: "人际关系准则", link: "/guidelines" },
4442
],
4543
show: true,

src/pages/index/components/RightBar.vue

-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,6 @@ const distroList = reactive([
1414
title: "Afterglow",
1515
description: "承前启后",
1616
},
17-
{
18-
img: "/assets/icons/computer-monitor.min.svg",
19-
title: "LiveKit",
20-
description: "备不时之需",
21-
},
2217
]);
2318
const commonLinkList = reactive([
2419
{

src/router.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,14 +154,14 @@ const router = createRouter({
154154
name: 'sponsoring',
155155
component: Sponsoring,
156156
meta: {
157-
title: '赞助'
157+
title: '赞助方一览'
158158
}
159159
}, {
160160
path: '/fund',
161161
name: 'fund',
162162
component: Fund,
163163
meta: {
164-
title: '众筹'
164+
title: '社区众筹'
165165
}
166166
}, {
167167
path: '/news',

0 commit comments

Comments
 (0)