Browse Source

悬挂备案标志

master
xie.bx 2 years ago
parent
commit
c40a2016c2
  1. 26
      im-ui/src/components/common/Icp.vue

26
im-ui/src/components/common/Icp.vue

@ -0,0 +1,26 @@
<template>
<div class="icp">
<img class="icp-icon" src="../../assets/image/icp_logo.png">
<a target="_blank" href="https://beian.miit.gov.cn/">粤ICP备2022140558号-1</a>
</div>
</template>
<script>
</script>
<style lang="scss">
.icp {
position: fixed;
text-align: center;
bottom: 20px;
margin: 0 auto;
width: 100%;
color: #5c6b77;
.icp-icon {
width: 20px;
height: 20px;
vertical-align: bottom;
}
}
</style>
Loading…
Cancel
Save