2023-12-01 14:48:58 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import FooterInfo from './compontents/FooterInfo/index.vue'
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
2023-11-30 10:49:45 +08:00
|
|
|
<template>
|
2023-12-01 11:22:09 +08:00
|
|
|
<div class="shop-header">
|
|
|
|
|
<div class="header-box">
|
|
|
|
|
<div class="header-wapper">
|
|
|
|
|
<a>登录</a>
|
|
|
|
|
<!-- <a>注册</a> -->
|
|
|
|
|
<a @click="$router.push('/myuser')">个人中心</a>
|
|
|
|
|
<a>收藏夹</a>
|
|
|
|
|
<a>手机版</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 菜单 -->
|
2023-12-01 14:03:26 +08:00
|
|
|
<div class="shop-menu-box">
|
|
|
|
|
<div class="shop-menu">
|
|
|
|
|
<div class="left-logo">
|
2023-12-01 15:00:37 +08:00
|
|
|
<img src="@/assets/img/home/2023_12_01_beijing2/logo.png" alt="">
|
2023-12-01 14:03:26 +08:00
|
|
|
</div>
|
|
|
|
|
<input placeholder="输入设备关键词" type="text">
|
|
|
|
|
<div class="erweima">二维码占位</div>
|
2023-12-01 11:22:09 +08:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-12-01 14:48:58 +08:00
|
|
|
|
|
|
|
|
|
2023-12-01 11:22:09 +08:00
|
|
|
</div>
|
|
|
|
|
|
2023-12-01 15:00:37 +08:00
|
|
|
<div class="container">
|
|
|
|
|
<RouterView />
|
|
|
|
|
</div>
|
2023-12-01 14:48:58 +08:00
|
|
|
|
|
|
|
|
<FooterInfo />
|
2023-11-30 10:49:45 +08:00
|
|
|
</template>
|
2023-12-01 14:48:58 +08:00
|
|
|
|
2023-11-30 10:49:45 +08:00
|
|
|
|
2023-12-01 11:22:09 +08:00
|
|
|
<style scoped lang="scss">
|
2023-12-01 15:00:37 +08:00
|
|
|
.container{
|
|
|
|
|
width: 1200px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2023-12-01 11:22:09 +08:00
|
|
|
.shop-header {
|
|
|
|
|
height: 157px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
2023-12-01 14:03:26 +08:00
|
|
|
z-index: 999;
|
2023-12-01 11:22:09 +08:00
|
|
|
|
|
|
|
|
.header-box {
|
|
|
|
|
background-color: #F5F5F5;
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
.header-wapper {
|
|
|
|
|
width: 1200px;
|
|
|
|
|
height: 37px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #6D6D6D;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
border-right: 1px solid #666655;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
color: #2282FF;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
.shop-menu-box {
|
|
|
|
|
background-color: #edeef6;
|
2023-12-01 11:22:09 +08:00
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
.shop-menu {
|
|
|
|
|
width: 1200px;
|
|
|
|
|
height: 120px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
2023-12-01 11:22:09 +08:00
|
|
|
|
|
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
.left-logo {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
font-size: 20px;
|
2023-12-01 11:22:09 +08:00
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
img {
|
|
|
|
|
width: 176px;
|
|
|
|
|
height: 58px;
|
|
|
|
|
}
|
2023-12-01 11:22:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
input {
|
|
|
|
|
width: 700px;
|
|
|
|
|
height: 45px;
|
|
|
|
|
border: 1px solid #5CA4FF;
|
|
|
|
|
border-radius: 45px;
|
|
|
|
|
margin-left: 70px;
|
|
|
|
|
// margin-left: 190px;
|
|
|
|
|
}
|
2023-12-01 11:22:09 +08:00
|
|
|
|
2023-12-01 14:03:26 +08:00
|
|
|
.erweima {
|
|
|
|
|
width: 80px;
|
|
|
|
|
height: 80px;
|
|
|
|
|
line-height: 80px;
|
|
|
|
|
margin-left: 30px;
|
|
|
|
|
background-color: skyblue;
|
|
|
|
|
}
|
2023-12-01 11:22:09 +08:00
|
|
|
}
|
2023-12-01 14:03:26 +08:00
|
|
|
|
2023-12-01 11:22:09 +08:00
|
|
|
}
|
2023-12-01 14:03:26 +08:00
|
|
|
|
|
|
|
|
|
2023-12-01 11:22:09 +08:00
|
|
|
}
|
|
|
|
|
</style>
|