1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <template>
- <div class="box">
- <div class="top wid d-flex justify-space-between">
- <div class="left">
- <h4>联系我们</h4>
- <div class="mt-4 size">
- <div>苏州识喜识谊信息科技有限公司</div>
- <div class="my-2">公司地址 苏州工业园区林泉街399号东南大学国家大学科技园(苏州)南工院(2#)304室</div>
- </div>
- </div>
- <div class="center">
- <h4>使用与帮助</h4>
- <div class="mt-4 size">
- <a href="/userAgreement">用户协议</a>
- <a class="my-2" href="/privacyPolicy">隐私协议</a>
- <a>使用与帮助</a>
- </div>
- </div>
- <div class="right size d-flex">
- <div class="d-flex flex-column align-center">
- <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/menduner/official-account-code4.jpg" style="height: 100px;"></v-img>
- <div class="mt-2">关注menduner公众号</div>
- </div>
- <div class="ml-5">
- <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/menduner/miniProgram.jpg" style="height: 100px;"></v-img>
- <div class="mt-2" style="text-align: center;">微信小程序</div>
- </div>
- </div>
- </div>
- <div class="bottom wid">
- <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: 180px;
- color: #fff;
- background-color: #313438;
- padding-top: 20px;
- }
- .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>
|