2023-01-15 05:22:30 +00:00
|
|
|
|
<template>
|
|
|
|
|
<div class="links">
|
|
|
|
|
<div class="line">
|
|
|
|
|
<Icon size="20">
|
|
|
|
|
<Link />
|
|
|
|
|
</Icon>
|
|
|
|
|
<span class="title">网站列表</span>
|
|
|
|
|
</div>
|
|
|
|
|
<el-row class="link-all" :gutter="20">
|
|
|
|
|
<el-col
|
|
|
|
|
:span="8"
|
|
|
|
|
v-for="(item, index) in linksData"
|
|
|
|
|
:key="item"
|
2023-04-21 08:37:08 +00:00
|
|
|
|
@click="jumpLink(item)"
|
2023-01-15 05:22:30 +00:00
|
|
|
|
>
|
|
|
|
|
<div
|
|
|
|
|
class="item cards"
|
|
|
|
|
:style="index < 3 ? 'margin-bottom: 20px' : null"
|
|
|
|
|
>
|
|
|
|
|
<Icon size="26">
|
|
|
|
|
<component :is="item.icon" />
|
|
|
|
|
</Icon>
|
|
|
|
|
<span class="name">{{ item.name }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
import { Icon } from "@vicons/utils";
|
|
|
|
|
import {
|
|
|
|
|
Link,
|
|
|
|
|
Blog,
|
|
|
|
|
CompactDisc,
|
|
|
|
|
Cloud,
|
|
|
|
|
Compass,
|
|
|
|
|
Book,
|
2023-03-10 06:59:09 +00:00
|
|
|
|
Fire,
|
2023-01-15 05:22:30 +00:00
|
|
|
|
} from "@vicons/fa";
|
2023-04-21 08:37:08 +00:00
|
|
|
|
import { mainStore } from "@/store";
|
|
|
|
|
const store = mainStore();
|
2023-01-15 05:22:30 +00:00
|
|
|
|
|
|
|
|
|
// 网站链接数据
|
2023-01-31 09:02:00 +00:00
|
|
|
|
// 建议不要超出6个,若需要超出请自行调整样式
|
2023-04-21 08:37:08 +00:00
|
|
|
|
const linksData = [
|
2023-01-15 05:22:30 +00:00
|
|
|
|
{
|
|
|
|
|
icon: Blog,
|
|
|
|
|
name: "博客",
|
|
|
|
|
link: "https://blog.imsyy.top/",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Cloud,
|
|
|
|
|
name: "网盘",
|
|
|
|
|
link: "https://pan.imsyy.top/",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: CompactDisc,
|
|
|
|
|
name: "音乐",
|
|
|
|
|
link: "https://music.imsyy.top/",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Compass,
|
|
|
|
|
name: "起始页",
|
|
|
|
|
link: "https://nav.imsyy.top/",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
icon: Book,
|
|
|
|
|
name: "网址集",
|
|
|
|
|
link: "https://web.imsyy.top/",
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-03-10 06:59:09 +00:00
|
|
|
|
icon: Fire,
|
|
|
|
|
name: "今日热榜",
|
|
|
|
|
link: "https://hot.imsyy.top/",
|
2023-01-15 05:22:30 +00:00
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// 链接跳转
|
2023-04-21 08:37:08 +00:00
|
|
|
|
const jumpLink = (data) => {
|
|
|
|
|
if (data.name === "音乐" && store.musicClick) {
|
|
|
|
|
if ($openList) $openList();
|
|
|
|
|
} else {
|
|
|
|
|
window.open(data.link, "_blank");
|
|
|
|
|
}
|
2023-01-15 05:22:30 +00:00
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.links {
|
|
|
|
|
.line {
|
|
|
|
|
margin: 2rem 0.25rem 1rem;
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
animation: fade;
|
|
|
|
|
-webkit-animation: fade 0.5s;
|
|
|
|
|
.title {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
font-size: 1.15rem;
|
|
|
|
|
text-shadow: 0 0 5px #00000050;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.link-all {
|
|
|
|
|
.item {
|
|
|
|
|
height: 100px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
animation: fade;
|
|
|
|
|
-webkit-animation: fade 0.5s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: scale(1.02);
|
|
|
|
|
background: rgb(0 0 0 / 40%);
|
|
|
|
|
transition: 0.3s;
|
|
|
|
|
}
|
2023-04-21 08:37:08 +00:00
|
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
transform: scale(1);
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-15 05:22:30 +00:00
|
|
|
|
.name {
|
|
|
|
|
font-size: 1.1rem;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
}
|
|
|
|
|
@media (min-width: 720px) and (max-width: 820px) {
|
|
|
|
|
.name {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 720px) {
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
@media (max-width: 460px) {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
.name {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin-left: 0;
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-04-21 08:37:08 +00:00
|
|
|
|
</style>
|