Layout.vue
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<script setup>
import Head from '@/components/head.vue'
import { ref } from 'vue'
const list = ref(['首页', '课程', '笔记', '消息', '云盘', '通讯录', '账号管理', '班级管理'])
const navigator = () => {}
</script>
<template>
<div class="counter">
<!-- 封住头部组件 -->
<Head></Head>
<div class="banner">
<!-- 左边部分 -->
<div class="left">
<div class="pic">
<img src="@/static/Avatar.png" alt="" />
</div>
<div class="name">XXX</div>
<div class="cont">
<div class="li" v-for="item in list" :key="item" @click="navigator">{{ item }}</div>
</div>
<div class="one"></div>
</div>
<!-- 右边二级路由 -->
<div class="right">
<!-- 这里是二级路由的出口 -->
<router-view></router-view>
</div>
</div>
</div>
</template>
<style lang="scss">
.counter {
background-color: #f2f2f2;
.banner {
display: flex;
.left {
position: relative;
margin: 40px 40px 0;
width: 25%;
background-color: #6170c3;
color: #fff;
border-radius: 18px;
.pic {
margin: 0 auto;
padding-top: 50px;
width: 75px;
height: 75px;
img {
width: 100%;
height: 100%;
border-radius: 50%;
}
}
.name {
margin-top: 10px;
text-align: center;
}
.cont {
margin-top: 20px;
.li {
line-height: 50px;
width: 100%;
height: 50px;
padding-left: 30px;
box-sizing: border-box;
}
}
.one {
background-color: pink;
}
}
}
}
</style>