123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <template>
- <div class="box">
- <div class="top wid d-flex justify-space-between">
- <div class="left d-flex justify-space-between">
- <div>
- <h4>联系我们</h4>
- <div class="mt-4 size">
- <div>苏州识喜识谊信息科技有限公司</div>
- <div class="my-2">service@menduner.com</div>
- <!-- <div class="my-2">公司地址 苏州工业园区林泉街399号东南大学国家大学科技园(苏州)南工院(2#)304室</div> -->
- <div>苏州工业园区林泉街399号</div>
- <div>东南大学国家大学科技园(苏州)南工院2栋304室</div>
- </div>
- </div>
- <div class="d-flex flex-column align-center ml-15 ">
- <v-img :width="100" cover aspect-ratio="16/9" src="https://minio.citupro.com/dev/menduner/tianzongwxqrcode.png" style="height: 100px;"></v-img>
- <div class="size mt-2">企业微信</div>
- </div>
- </div>
- <div class="center ml-15">
- <h4>使用与帮助</h4>
- <div class="mt-4 size">
- <div class="d-flex my-2">
- <a target="_blank" href="/userAgreement" style="width: 140px;">用户协议</a>
- <a target="_blank" href="/UserBehaviorNorms">行为规范</a>
- </div>
- <div class="d-flex my-2">
- <a target="_blank" href="/CopyrightPolicy" style="width: 140px;">版权政策</a>
- <a target="_blank" href="/privacyPolicy">隐私协议</a>
- </div>
- <div class="d-flex my-2">
- <a target="_blank" href="/WorkplaceCommunityPolicy" style="width: 140px;">职场社区政策</a>
- </div>
- </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 mt-3 d-flex justify-space-between">
- <div v-for="(item, i) in list" :key="i" class="d-flex align-center mb-3" @click="handleClick(item)">
- <v-img v-if="item.iconImg" cover aspect-ratio="16/9" :src="item.iconImg" :width="12" style="height: 12px; margin-right: 2px;"></v-img>
- <span class="size second">{{ item.label }}</span>
- </div>
- </div>
- </div>
- </template>
- <script setup>
- defineOptions({ name: 'personal-footer' })
- const list = [
- { label: '苏ICP备2024103111号-1', openPath: 'https://beian.miit.gov.cn/#/Integrated/index' },
- { label: '苏ICP备2024103111号-4', openPath: 'https://beian.miit.gov.cn/#/Integrated/index' },
- { label: '电子营业执照', path: '', id: 'business license' },
- { label: '公安备案号 32059002001928', openPath: 'https://beian.mps.gov.cn/#/query/webSearch?code=32059002001928', iconImg: 'https://minio.citupro.com/dev/menduner/RecordIcon.png' },
- { label: '人力资源服务许可证', id: 'Human Resources License' }
- ]
- const handleClick = (item) => {
- if (item.id) {
- window.open('/qualificationCertificate?id=' + item.id)
- } else if (item.openPath) {
- window.open(item.openPath)
- }
- }
- </script>
- <style scoped lang="scss">
- .box {
- width: 100%;
- height: 192px;
- 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>
|