Files
cmanager/src/page/login/CmanageFooter.vue

92 lines
1.7 KiB
Vue
Raw Normal View History

2024-02-02 15:04:47 +08:00
<template>
<div class="layoutBottomBox">
<div class="footerPrepare">
<p>
Copyright © 2021 德阳市智慧就业服务平台
<a href="//beian.miit.gov.cn" target="blank">京ICP备16004663号-10</a>
经营许可证编号京B2-20130104
<a href="/home/img/license/YYZZ.jpg" target="blank"
><img
height="16"
src="/manage/img/icon-badge-1.png"
/></a
>&nbsp;
<a href="/home/img/license/RLZYXKZ.jpg" target="blank"
>人力资源服务许可证</a
>
</p>
</div>
</div>
</div>
</template>
<script>
let config;
if (process.env.VUE_APP_SITE === "default") {
config = {
2024-05-16 08:41:21 +08:00
phone: "",
email: "",
address: "",
2024-02-02 15:04:47 +08:00
gongzhonghao: "",
2024-05-16 08:41:21 +08:00
xiaochengxu: "",
2024-02-02 15:04:47 +08:00
};
}
export default {
name: "layoutBottom",
data() {
return { config };
},
};
</script>
<style scoped>
* {
margin: 0;
padding: 0;
}
.layoutBottomBox {
background: #ffffff;
}
.footerTop {
width: 100%;
display: flex;
justify-content: space-between;
}
h4 {
font-size: 18px;
color: #666666;
margin-top: 40px;
}
.contactUs p {
line-height: 40px;
font-size: 14px;
color: #666666;
}
.footerPrepare {
width: 100%;
text-align: center;
border-top: 1px solid #dddddd;
padding: 31px 0;
margin-top: 40px;
font-size: 14px;
color: #999999;
}
.footerPrepare a,
.footerPrepare a:hover,
.footerPrepare a:visited {
color: inherit;
}
.footerCode {
display: flex;
margin-top: 30px;
}
.footerCode div {
text-align: center;
font-size: 14px;
color: #666666;
letter-spacing: 0;
line-height: 20px;
}
</style>