修改
This commit is contained in:
@ -21,7 +21,7 @@ window.nav = {
|
||||
},
|
||||
],
|
||||
},
|
||||
{id: 3, label: '服务与支撑', url: '/services', hasChildren: false},
|
||||
// {id: 3, label: '服务与支撑', url: '/services', hasChildren: false},
|
||||
{ id: 4, label: '新闻中心', url: '/news', hasChildren: false },
|
||||
{ id: 5, label: '关于我们', url: '/about', hasChildren: false },
|
||||
{ id: 6, label: '联系我们', url: '/link', hasChildren: false },
|
||||
@ -39,18 +39,18 @@ window.nav = {
|
||||
{ id: 1.4, label: '智能加载服务', url: '/product' },
|
||||
],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
label: '服务与支撑',
|
||||
url: '/services',
|
||||
hasChildren: false,
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
label: '软件下载',
|
||||
url: '/download',
|
||||
hasChildren: false,
|
||||
},
|
||||
// {
|
||||
// id: 2,
|
||||
// label: '服务与支撑',
|
||||
// url: '/services',
|
||||
// hasChildren: false,
|
||||
// },
|
||||
// {
|
||||
// id: 3,
|
||||
// label: '软件下载',
|
||||
// url: '/download',
|
||||
// hasChildren: false,
|
||||
// },
|
||||
{ id: 4, label: '新闻中心', url: '/news', hasChildren: false },
|
||||
{
|
||||
id: 5,
|
||||
|
||||
BIN
public/static/images/main/display.mp4
Normal file
BIN
public/static/images/main/display.mp4
Normal file
Binary file not shown.
@ -37,7 +37,7 @@ import Footer from './views/layout/pc/footer/index.vue'
|
||||
}
|
||||
#footer {
|
||||
width: 100%;
|
||||
height: 500px;
|
||||
height: 380px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -9,6 +9,9 @@ onMounted(() => {})
|
||||
<template>
|
||||
<div class="page">
|
||||
<div class="banner">
|
||||
<video autoplay muted loop>
|
||||
<source src="/static/images/main/display.mp4" type="video/mp4">
|
||||
</video>
|
||||
<div class="banner-link"><span>进入演示系统</span></div>
|
||||
</div>
|
||||
<div class="swiper">
|
||||
@ -35,11 +38,9 @@ onMounted(() => {})
|
||||
.page {
|
||||
.banner {
|
||||
width: 100%;
|
||||
height: 800px;
|
||||
height: auto;
|
||||
position: relative;
|
||||
background-image: url('/static/images/main/banner.png');
|
||||
background-size: 100% 100%;
|
||||
background-repeat: no-repeat;
|
||||
background-color: #333333;
|
||||
&-link {
|
||||
width: 174px;
|
||||
height: 48px;
|
||||
@ -64,8 +65,13 @@ onMounted(() => {})
|
||||
color: $white;
|
||||
}
|
||||
}
|
||||
video{
|
||||
padding: 3px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.swiper {
|
||||
width: 100%;
|
||||
height: 800px;
|
||||
|
||||
@ -5,18 +5,28 @@ onMounted(() => {})
|
||||
|
||||
<template>
|
||||
<div class="QR-code">
|
||||
<div class="QR-dev">
|
||||
<img class="QR-img" :src="`./static/images/footer/QR_code.png`" />
|
||||
<div class="label">企业微信</div>
|
||||
<img class="QR-img item" :src="`./static/images/footer/mark.png`" alt="" />
|
||||
</div>
|
||||
<div class="QR-dev">
|
||||
<img class="QR-img" :src="`./static/images/footer/mark.png`" alt="" />
|
||||
<div class="label">熊雨翔</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.QR-code {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: $white;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
.QR-dev {
|
||||
width: 150px;
|
||||
height: 200px;
|
||||
}
|
||||
.QR-img {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
@ -26,8 +36,5 @@ onMounted(() => {})
|
||||
text-align: center;
|
||||
color: $white;
|
||||
}
|
||||
.item {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -26,7 +26,8 @@ const toMIIF = () => {
|
||||
Copyright © 2023.Rangu Technology Co.,Ltd. All rights reserved.
|
||||
燃谷科技(南京)有限公司
|
||||
</span>
|
||||
<span class="url" @click="toMIIF">苏ICP备2023030548号</span>
|
||||
<span class="url" @click="toMIIF">苏ICP备2023030548号-1</span>
|
||||
<span class="url" @click="toMIIF">苏ICP备2023030548号-5</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -45,7 +46,7 @@ const toMIIF = () => {
|
||||
left: 190px;
|
||||
}
|
||||
#nav {
|
||||
width: calc(100% - 410px - 380px);
|
||||
width: calc(100% - 410px - 550px);
|
||||
position: absolute;
|
||||
left: 410px;
|
||||
top: $top;
|
||||
@ -53,7 +54,7 @@ const toMIIF = () => {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#QR {
|
||||
width: 150px;
|
||||
width: 320px;
|
||||
height: 150px;
|
||||
position: absolute;
|
||||
top: $top;
|
||||
|
||||
Reference in New Issue
Block a user