律师系统前端
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.

28 lines
738 B

4 months ago
<!--
* 底部版权公司等信息
-->
<template>
<div class="version">
2 months ago
<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>
4 months ago
</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>