#
luxiaotao1123
2023-07-31 13c32503baa97faf38fdd62b21cff5a58a538bcf
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
<template>
  <div id="top-header">
    <dv-decoration-8 class="header-left-decoration" />
    <dv-decoration-5 class="header-center-decoration" />
    <dv-decoration-8 class="header-right-decoration" :reverse="true" />
    <div class="center-title">U9 SCADA数据看板</div>
  </div>
</template>
 
<script>
export default {
  name: 'TopHeader'
}
</script>
 
<style lang="less">
#top-header {
  position: relative;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
 
  .header-center-decoration {
    width: 40%;
    height: 60px;
    margin-top: 30px;
  }
 
  .header-left-decoration, .header-right-decoration {
    width: 25%;
    height: 60px;
  }
 
  .center-title {
    position: absolute;
    font-size: 30px;
    font-weight: bold;
    left: 50%;
    top: 15px;
    transform: translateX(-50%);
  }
}
</style>