路由
This commit is contained in:
parent
81f8ddc962
commit
7d9a179671
@ -1,8 +1,24 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="box">
|
<div class="box">
|
||||||
|
<van-popup v-model="show" position="top" :style="{ height: '2.82rem' }" >
|
||||||
|
<div style="height:0.88rem"></div>
|
||||||
|
<div class="list">
|
||||||
|
<div>首页</div>
|
||||||
|
<div>我的主页</div>
|
||||||
|
<div>退出登录</div>
|
||||||
|
</div>
|
||||||
|
</van-popup>
|
||||||
<div class="head">
|
<div class="head">
|
||||||
<img class="logo" src="" alt="" srcset="">
|
<img class="logo" src alt srcset />
|
||||||
<div class="search"></div>
|
<div class="search">
|
||||||
|
<img src alt />
|
||||||
|
<input type="text" />
|
||||||
|
</div>
|
||||||
|
<div class="mnue" @click="isshow">
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
<div></div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -10,7 +26,12 @@
|
|||||||
.box {
|
.box {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
background-color: #f6f6f6;
|
background-color: #f6f6f6;
|
||||||
|
padding-top: 88px;
|
||||||
|
box-sizing: border-box;
|
||||||
.head {
|
.head {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
z-index: 9999;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 88px;
|
height: 88px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
@ -21,15 +42,56 @@
|
|||||||
height: 37px;
|
height: 37px;
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
display: block;
|
display: block;
|
||||||
|
margin-left: 30px;
|
||||||
}
|
}
|
||||||
.search {
|
.search {
|
||||||
|
margin-left: 24px;
|
||||||
width: 485px;
|
width: 485px;
|
||||||
height: 60px;
|
height: 60px;
|
||||||
background-color: #F0F0F0;
|
background-color: #f0f0f0;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
border: 1px solid rgba(233, 233, 233, 1);
|
border: 1px solid rgba(233, 233, 233, 1);
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
> img {
|
||||||
|
margin-left: 23px;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
background-color: #000;
|
||||||
}
|
}
|
||||||
|
> input {
|
||||||
|
margin-left: 21px;
|
||||||
|
color: #333;
|
||||||
|
font-size: 24px;
|
||||||
|
height: 26px;
|
||||||
|
border: none;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mnue {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 15px;
|
||||||
|
width: 24px;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-left: 42px;
|
||||||
|
> div {
|
||||||
|
width: 100%;
|
||||||
|
height: 3px;
|
||||||
|
background-color: #95998f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.list{
|
||||||
|
padding:26px;
|
||||||
|
height: 194px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
flex-direction: column;
|
||||||
|
color: #333;
|
||||||
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@ -37,7 +99,14 @@
|
|||||||
export default {
|
export default {
|
||||||
name: "index",
|
name: "index",
|
||||||
data() {
|
data() {
|
||||||
return {};
|
return {
|
||||||
|
show:false
|
||||||
|
};
|
||||||
|
},
|
||||||
|
methods:{
|
||||||
|
isshow(){
|
||||||
|
this.show = !this.show
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue
Block a user