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
77
78
79
80
81
| <!--
| * @User: EricGU178
| * @Date: 2019-02-19 11:52:25
| * @LastEditors: EricGU178
| * @LastEditTime: 2019-02-22 10:42:54
| * @温馨提示: 代码千万行 注释第一行 命名不规范 同事^ ^
| * @头部组件
| -->
| <template>
| <div class="header">
| </div>
| </template>
| <script>
| export default {
| data() {
| return {
| };
| },
| created() {
| },
| methods: {
| },
| mounted() {
| },
| };
| </script>
| <style scoped>
| .header {
| position: relative;
| box-sizing: border-box;
| width: 100%;
| height: 70px;
| font-size: 22px;
| background: #000;
| color: #fff;
| }
| .collapse-btn {
| float: left;
| padding: 0 21px;
| cursor: pointer;
| line-height: 70px;
| }
| .header .logo {
| float: left;
| width: 250px;
| line-height: 70px;
| }
|
| .header .content-collapse {
| width: 50px;
| }
| .header-right {
| float: right;
| padding-right: 50px;
| }
| .header-user-con {
| display: flex;
| height: 70px;
| align-items: center;
| }
| .btn-fullscreen {
| transform: rotate(45deg);
| margin-right: 5px;
| font-size: 24px;
| }
| .btn-bell,
| .btn-fullscreen {
| position: relative;
| width: 30px;
| height: 30px;
| text-align: center;
| border-radius: 15px;
| cursor: pointer;
| }
| .user-name {
| margin-left: 10px;
| }
| .user-avator {
| margin-left: 20px;
| }
| </style>
|
|