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.
 
 
 
 
 

64 lines
1.3 KiB

<!--
* @Author: Yujialong
* @Date: 2021-11-03 14:33:21
* @LastEditTime: 2021-11-04 14:00:37
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
-->
<template>
<div class="footer">
<div class="info">
<!-- <span class="m-r-20">客服邮箱service@huorantech.cn</span> -->
<span>联系人金经理 15218726836</span>
</div>
<div class="copyright">
<span>© Copyright 2021 Dataforward 数据前瞻</span>
<a href="https://beian.miit.gov.cn/#/Integrated/index"
target="_blank">粤ICP备20072679号</a>
</div>
</div>
</template>
<script>
export default {
data () {
return {
};
},
mounted () {
},
methods: {
},
};
</script>
<style lang="scss" scoped>
.footer {
padding: 17px 0 9px;
text-align: center;
background-color: #0f1d2e;
.info {
margin-bottom: 7px;
font-size: 14px;
line-height: 20px;
color: #d7dfe7;
}
.copyright {
font-size: 12px;
text-align: center;
line-height: 17px;
span {
margin-right: 20px;
color: #757f8a;
}
a {
color: #757f8a;
font-size: 12px;
&:hover {
color: #c7c7c7;
}
}
}
}
</style>