forked from drone/command-center-dashboard

chenyao
2025-03-28 b4ba7ef43a97b02a3af5bff339a66f3f6443fe0e
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<template>
  <div class="header">
    <div class="h-left">
      <div class="left-item active" @click="router.push('/')">首页</div>
      <div class="left-item">集群调度</div>
      <div class="left-item" @click="router.push('/taskManage')">任务管理</div>
      <div class="left-item">航线规划</div>
    </div>
    <div class="big-title">江西省指挥调度平台</div>
    <div class="h-right">
      <div class="right-item">AI识别分析</div>
      <div class="right-item">综合分析</div>
      <div class="right-item">数据中心</div>
      <div class="right-item">系统运维</div>
    </div>
  </div>
</template>
 
<script setup>
const router = useRouter()
</script>
 
<style scoped lang="scss">
.header {
  width: calc(100% - 57px - 59px);
  margin-left: 57px;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  // position: relative;
 
  .h-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    .left-item {
      width: 105px;
      height: 39px;
      background: url(@/assets/images/header-left.png) no-repeat;
      background-size: 100% 100%;
      margin-right: 3px;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei,serif;
      font-weight: 400;
      font-size: 18px;
      color: #ffffff;
      line-height: 42px;
      text-align: center;
      font-style: normal;
      text-transform: none;
    }
 
    .active {
      background: url(@/assets/images/header-active.png) no-repeat;
      background-size: 100% 100%;
    }
  }
  .big-title {
    position: relative;
    top: -12px;
    width: 500px;
    height: 58px;
    font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
    font-weight: 400;
    font-size: 45px;
    color: #FFFFFF;
    line-height: 53px;
    letter-spacing: 11px;
    text-shadow: 0px 4px 1px rgba(19,80,143,0.66), 0px 0px 18px rgba(130,165,255,0.4), inset 0px 0px 2px rgba(255,255,255,0.8);
    text-align: center;
    font-style: normal;
    text-transform: none;
  }
  .h-right {
    display: flex;
    justify-content: space-between;
    align-items: center;
 
    .right-item {
      width: 105px;
      height: 39px;
      background: url(@/assets/images/header-right.png) no-repeat;
      background-size: 100% 100%;
      margin-right: 3px;
      font-family: YouSheBiaoTiHei, YouSheBiaoTiHei,serif;
      font-weight: 400;
      font-size: 18px;
      color: #ffffff;
      line-height: 42px;
      text-align: center;
      font-style: normal;
      text-transform: none;
    }
  }
}
</style>