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.
43 lines
862 B
43 lines
862 B
4 years ago
|
<template>
|
||
|
<div>
|
||
|
<div class="copyright">
|
||
|
<p>技术支持:深圳或然科技有限公司</p>
|
||
|
<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>
|
||
|
.copyright{
|
||
|
padding: 20px 0;
|
||
|
color: rgba(0, 0, 0, 0.45);
|
||
|
font-size: 12px;
|
||
|
text-align: center;
|
||
|
background-color: #333;
|
||
|
p{
|
||
|
margin-bottom: 10px;
|
||
|
color: #fff;
|
||
|
font-size: 12px;
|
||
|
}
|
||
|
a{
|
||
|
color:#fff;
|
||
|
font-size: 12px;
|
||
|
&:hover{
|
||
|
opacity: .8;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|