You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
738 B
27 lines
738 B
<!--
|
|
* 底部:版权、公司等信息
|
|
-->
|
|
<template>
|
|
<div class="version">
|
|
<a target="_blank" class="smart-copyright">{{ currentYear }}@ 安徽三朵云信息科技有限公司</a><a style="margin-left:20px">服务经理:王经理</a><a style="margin-left:10px">联系方式:18226700205</a>
|
|
<a style="margin-left:20px">应急联系人:耿经理</a><a style="margin-left:10px">应急电话:15255503352</a>
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import dayjs from 'dayjs';
|
|
|
|
const currentYear = dayjs().year();
|
|
</script>
|
|
|
|
<style lang="less" scoped>
|
|
.version {
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
a {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
a:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
</style>
|
|
|