Skip to content

Commit 5041177

Browse files
committed
feat: 更新页脚布局和样式以适应新的备案链接
1 parent 2f5ab10 commit 5041177

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

src/components/AppFooter.vue

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-footer height="40" app>
2+
<v-footer height="auto" app>
33
<a
44
key="ClassIsland"
55
href="https://classisland.tech/"
@@ -30,15 +30,18 @@
3030
style="position: absolute; right: 16px"
3131
>
3232
&copy; 2023-{{ new Date().getFullYear() }}
33-
<span class="d-none d-sm-inline-block">DSZ Dev Team</span>
33+
<span class="d-none d-sm-inline-block">ClassIsland</span>
34+
&nbsp;|&nbsp;
35+
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" class="beian-link">沪ICP备2024084943号</a>
36+
&nbsp;|&nbsp;
37+
<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=12345678" target="_blank" rel="noopener noreferrer" class="beian-link">沪公网安备31012002006157号</a>
3438
</div>
3539
</v-footer>
3640
</template>
3741

3842
<script setup lang="ts">
3943
import SvgIcon from './SvgIcon.vue';
4044
41-
4245
const items = [
4346
{
4447
title: "QQ群",
@@ -54,7 +57,6 @@ const items = [
5457
</script>
5558

5659
<style scoped lang="sass">
57-
5860
.social-link :deep(.v-icon)
5961
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity))
6062
text-decoration: none
@@ -63,6 +65,11 @@ const items = [
6365
&:hover
6466
color: rgba(25, 118, 210, 1)
6567
68+
.beian-link
69+
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity))
70+
text-decoration: none
71+
transition: .2s ease-in-out
6672
67-
73+
&:hover
74+
color: rgba(25, 118, 210, 1)
6875
</style>

0 commit comments

Comments
 (0)