57 lines
1.1 KiB
Plaintext
57 lines
1.1 KiB
Plaintext
<template>
|
|
<div class="page-footer">
|
|
<div class="page-footer-link">
|
|
<a href="https://www.baidu.com" target="_blank"> 官网 </a>
|
|
<a href="https://www.baidu.com" target="_blank"> 社区 </a>
|
|
<a href="https://www.baidu.com" target="_blank"> 交流 </a>
|
|
</div>
|
|
<div class="copyright">Copyright © 2024 南京云恒信息技术有限公司</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PageFooter',
|
|
components: {},
|
|
props: {
|
|
collapsed: {
|
|
type: Boolean,
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.page-footer {
|
|
margin: 20px 0 10px 0;
|
|
padding: 0 16px;
|
|
text-align: center;
|
|
|
|
a {
|
|
font-size: 14px;
|
|
color: #808695;
|
|
-webkit-transition: all 0.2s ease-in-out;
|
|
transition: all 0.2s ease-in-out;
|
|
|
|
&:hover {
|
|
color: #515a6e;
|
|
}
|
|
}
|
|
|
|
&-link {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 8px;
|
|
|
|
a:not(:last-child) {
|
|
margin-right: 40px;
|
|
}
|
|
}
|
|
|
|
.copyright {
|
|
color: #808695;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
</style>
|