<template>
|
<div class="layout-footer pb15">
|
<div class="layout-footer-warp flex items-center">
|
<div class="mr15">{{ `网站备案号:${ICP_LICENSE}` }}</div>
|
<div>{{ `V${PROJECT_VERSION}.${PROJECT_NAME}` }}</div>
|
|
<!-- <div class="mt5">深圳市 xxx 公司版权所有</div> -->
|
</div>
|
</div>
|
</template>
|
|
<script setup lang="ts" name="layoutFooter">
|
// 此处需有内容(注释也得),否则缓存将失败
|
import { PROJECT_VERSION, PROJECT_NAME, ICP_LICENSE } from '/@/constants/';
|
</script>
|
|
<style scoped lang="scss">
|
.layout-footer {
|
width: 100%;
|
display: flex;
|
&-warp {
|
margin-left: auto;
|
margin-right: 20px;
|
color: var(--el-text-color-secondary);
|
text-align: center;
|
animation: error-num 0.3s ease;
|
}
|
}
|
</style>
|