123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <div class="box">
- <div class="top wid d-flex justify-space-between">
- <div class="left">
- <h4>联系我们</h4>
- <div class="mt-5 size">
- <div>苏州识喜识谊信息科技有限公司</div>
- <div class="my-3">公司地址 苏州工业园区林泉街399号东南大学国家大学科技园(苏州)南工院(2#)304室</div>
- <div>服务热线/举报渠道 4000xxxx</div>
- </div>
- </div>
- <div class="center">
- <h4>使用与帮助</h4>
- <div class="mt-5 size">
- <a href="/userAgreement">用户协议</a>
- <a class="my-3" href="/privacyPolicy">隐私协议</a>
- <a>使用与帮助</a>
- </div>
- </div>
- <div class="right size d-flex">
- <div>
- <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/static/mendunerCode.jpg" style="height: 100px;"></v-img>
- <div class="mt-2" style="text-align: center;">微信公众号</div>
- </div>
- <div class="ml-5">
- <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/static/emw.png" style="height: 100px;"></v-img>
- <div class="mt-2" style="text-align: center;">小程序</div>
- </div>
- </div>
- </div>
- <div class="bottom wid mt-7">
- <span class="size mr-7 second" v-for="(item, i) in list" :key="i">{{ item.label }}</span>
- </div>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'personal-footer' })
- const list = [
- { label: 'Copyright © 2024招聘人才网', path: '' },
- { label: '苏ICP备2021021762号-1', path: '' },
- { label: '苏ICP备18037702号-1', path: '' },
- { label: '电子营业执照', path: '', img: '' },
- { label: '公安备案号 32059002001928', path: '', img: '' },
- { label: '人力资源服务许可证', path: '' }
- ]
- </script>
- <style scoped lang="scss">
- .box {
- width: 100%;
- height: 225px;
- color: #fff;
- background-color: #313438;
- padding: 30px 0;
- }
- .wid {
- width: 1184px;
- max-width: 1184px;
- margin: auto;
- }
- .size {
- color: #ffffff80;
- font-size: 12px;
- }
- .second {
- cursor: pointer;
- }
- a {
- display: block;
- cursor: pointer;
- color: #ffffff80;
- text-decoration: none;
- &:hover {
- color: var(--v-primary-base);
- }
- }
- .bottom span:hover {
- color: var(--v-primary-base);
- }
- .second div:hover {
- color: var(--v-primary-base);
- }
- </style>
|