|
@@ -1,202 +0,0 @@
|
|
|
-<template>
|
|
|
-<div class="footer">
|
|
|
- <div class="footer-top">
|
|
|
- <div class="top-item about">
|
|
|
- <div class="title about-title">关于万维自然资源大模型</div>
|
|
|
- <div class="about-list">
|
|
|
- <div class="about-item">使用指南</div>
|
|
|
- <div class="about-item">购买指南</div>
|
|
|
- <div class="about-item" @click="linkToZjugisHome">关于万维</div>
|
|
|
- <div class="about-item">合作伙伴</div>
|
|
|
- <div class="about-item">法律申明</div>
|
|
|
- <div class="about-item" @click="linkToPrivacy">隐私政策</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <a-divider class="divider" type="vertical" />
|
|
|
- <div class="top-item about">
|
|
|
- <div class="title about-title">联系我们</div>
|
|
|
- <div class="about-list">
|
|
|
- <div class="about-item about-item-2">
|
|
|
- <div class="icon icon-phone"></div>
|
|
|
- <div class="info phone">0571-89922306</div>
|
|
|
- </div>
|
|
|
- <div class="about-item about-item-2">
|
|
|
- <div class="icon icon-address"></div>
|
|
|
- <div class="info address">杭州市滨江区月明路560号1幢20层</div>
|
|
|
- </div>
|
|
|
-
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
-
|
|
|
- <div class="top-item about">
|
|
|
- <div class="qrcode"></div>
|
|
|
- <div class="desc">万维客服</div>
|
|
|
- </div>
|
|
|
- <a-divider style="margin-left: 40px" class="divider" type="vertical" />
|
|
|
- <div class="top-item about" style="width: 136px">
|
|
|
- <div class="title about-title">关于我们</div>
|
|
|
- <div class="about-list">
|
|
|
- <div class="about-item about-item-2">
|
|
|
- <div class="icon icon-wechat"></div>
|
|
|
- <div class="info wechat">微信公众号</div>
|
|
|
- </div>
|
|
|
- <div class="about-item about-item-2">
|
|
|
- <div class="icon icon-app"></div>
|
|
|
- <div class="info address">移动APP</div>
|
|
|
- </div>
|
|
|
- <div class="about-item about-item-2">
|
|
|
- <div class="icon icon-wechat-app"></div>
|
|
|
- <div class="info wechat-app">微信小程序</div>
|
|
|
- </div>
|
|
|
-
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <div class="footer-bottom">
|
|
|
- <div class="bot-item copyright">版权所有:浙江万维空间信息技术有限公司</div>
|
|
|
- <div class="bot-item copyright-num"><div class="icon"></div>浙ICP备20019525号-9</div>
|
|
|
- <div class="bot-item record-num">浙公网安备3301080201</div>
|
|
|
- </div>
|
|
|
-</div>
|
|
|
-</template>
|
|
|
-<script setup>
|
|
|
-
|
|
|
-import { linkToPrivacy, linkToZjugisHome } from '@/utils/external-links';
|
|
|
-</script>
|
|
|
-<style scoped lang="scss">
|
|
|
-.footer {
|
|
|
- width: 100%;
|
|
|
- height: 214px;
|
|
|
- background: #1F2738;
|
|
|
- display: flex;
|
|
|
- justify-content: center;
|
|
|
- align-items: center;
|
|
|
- flex-direction: column;
|
|
|
- padding: 20px;
|
|
|
-
|
|
|
- .footer-top {
|
|
|
- height: calc(100% - 40px);
|
|
|
- margin-top: 17px;
|
|
|
- display: flex;
|
|
|
- .about {
|
|
|
-
|
|
|
- .title {
|
|
|
- font-family: AlibabaPuHuiTi;
|
|
|
- font-weight: 400;
|
|
|
- font-size: 16px;
|
|
|
- color: #FFFFFF;
|
|
|
- margin-bottom: 16px;
|
|
|
- }
|
|
|
-
|
|
|
- .about-list {
|
|
|
- display: flex;
|
|
|
- flex-wrap: wrap;
|
|
|
-
|
|
|
- .about-item {
|
|
|
- width: 33%;
|
|
|
- margin-bottom: 20px;
|
|
|
- cursor: pointer;
|
|
|
- font-family: AlibabaPuHuiTi;
|
|
|
- font-weight: 400;
|
|
|
- font-size: 14px;
|
|
|
- color: #FFFFFF;
|
|
|
-
|
|
|
- &-2 {
|
|
|
- width: 100%;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- margin-bottom: 10px;
|
|
|
-
|
|
|
- .icon {
|
|
|
- width: 20px;
|
|
|
- height: 20px;
|
|
|
-
|
|
|
- &-phone {
|
|
|
- background: url("@/assets/images/footer/about-phone.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
-
|
|
|
- &-address {
|
|
|
- background: url("@/assets/images/footer/about-address.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
-
|
|
|
- &-wechat {
|
|
|
- background: url("@/assets/images/footer/about-wechat.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
-
|
|
|
- &-app {
|
|
|
- background: url("@/assets/images/footer/about-app.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
-
|
|
|
- &-wechat-app {
|
|
|
- background: url("@/assets/images/footer/about-wechat-app.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .info {
|
|
|
- margin-left: 10px;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- &:hover {
|
|
|
- color: #0a84ff;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .qrcode {
|
|
|
- width: 88px;
|
|
|
- height: 88px;
|
|
|
- background-size: 100% 100%;
|
|
|
- background: url("@/assets/images/footer/about-qrcode.png") no-repeat;
|
|
|
- }
|
|
|
-
|
|
|
- .desc {
|
|
|
- width: 88px;
|
|
|
- text-align: center;
|
|
|
- margin-top: 10px;
|
|
|
- font-family: AlibabaPuHuiTi;
|
|
|
- font-weight: 400;
|
|
|
- font-size: 14px;
|
|
|
- color: #FFFFFF;
|
|
|
- }
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- .divider {
|
|
|
- height: 120px;
|
|
|
- color: #fff;
|
|
|
- background-color: #ccc;
|
|
|
- margin-right: 46px;
|
|
|
- }
|
|
|
- }
|
|
|
- .footer-bottom {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- height: 20px;
|
|
|
-
|
|
|
- .bot-item {
|
|
|
- margin-right: 20px;
|
|
|
- font-family: AlibabaPuHuiTi;
|
|
|
- font-weight: 400;
|
|
|
- font-size: 14px;
|
|
|
- color: #FFFFFF;
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
-
|
|
|
- .icon {
|
|
|
- width: 20px;
|
|
|
- height: 20px;
|
|
|
- background: url("@/assets/images/footer/footer-gongan.png") no-repeat;
|
|
|
- background-size: 100% 100%;
|
|
|
- margin-right: 4px;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-</style>
|