初始化代码

This commit is contained in:
yiqiuyang
2025-09-03 18:05:48 +08:00
parent e5712b2e97
commit 4414fe517b
70 changed files with 2404 additions and 9 deletions

65
src/views/link/index.vue Normal file
View File

@ -0,0 +1,65 @@
<script setup>
import {ref, onMounted} from 'vue'
import Swiper from '@/components/swiper/index.vue'
import Map from './map.vue'
const currentPage = ref(1)
onMounted(() => {})
</script>
<template>
<div class="page">
<div class="placeholder"></div>
<Swiper
id="one"
title="联系我们"
v-model="currentPage"
:sourceWidth="1200"
:sourceHeight="400"
:show-pagination="false"
:auto-play="false"
:showHover="false"
>
<template #default>
<div class="my-card flex j-s">
<div class="title">
<div class="label">燃谷科技南京有限公司</div>
<div class="label">电话13222013393</div>
<div class="label">邮箱company@rangutech.com</div>
<div class="label">地址江苏省南京市鼓楼区万谷硅巷9F</div>
</div>
<div class="img">
<Map />
</div>
</div>
</template>
</Swiper>
</div>
</template>
<style lang="scss" scoped>
.my-card {
width: 100%;
height: 100%;
padding-top: 20px;
.title {
text-align: left;
.label {
font-family: 'PingFang SC';
font-weight: 400;
font-size: 24px;
margin-bottom: 20px;
}
.label:nth-child(1) {
font-family: 'PingFang SC';
font-weight: 600;
font-size: 32px;
}
}
.img {
width: 500px;
height: 300px;
}
}
</style>