ZZJ
2022-06-01 f3bf27d9bc7c8c6484be4f37edcc57df5490ecbe
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
<template>
  <div class="top-nav">
    <div class="logo">
      <img src="/images/layout/LOGO.png" alt="" />
      工业互联网平台
    </div>
 
    <div class="user">
      <img src="/images/layout/默认头像-01.png" alt="" />
      <div class="dropdown">basic</div>
      <i class="el-icon-arrow-down"></i>
    </div>
  </div>
</template>
<script>
export default {};
</script>
 
<style lang="scss" scoped>
.top-nav {
  display: flex;
  padding: 0 20px;
  height: 50px;
  background-color: #262f3e;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
 
  .logo {
    color: #bfc2c7;
    line-height: 50px;
    img {
      margin-right: 7px;
      vertical-align: middle;
      height: 32px;
    }
  }
 
  .user {
    display: flex;
    align-items: center;
    color: #bfc2c7;
    img {
      margin-right: 10px;
      width: 28px;
    }
    i {
      margin-left: 5px;
      font-size: 12px;
    }
  }
}
</style>