forked from drone/command-center-dashboard

罗广辉
2025-03-29 f1e4e5843ff9ae37ccecd0ea391911f67de0e50d
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
<template>
    <div class="footer">
      <img class="machine-nest" src="@/assets/images/machine-nest.png" alt="">
      <img class="event" src="@/assets/images/event.png" alt="">
      <img class="panorama" src="@/assets/images/panorama.png" alt="">
      <img class="threeD" src="@/assets/images/3D.png" alt="">
      <img class="orthophoto" src="@/assets/images/orthophoto.png" alt="">
    </div>
    <div class="intelligent-introduction-flying">
      <img class="orthophoto" src="@/assets/images/intelligent-introduction-flying.png" alt="">
    </div>
</template>
 
<script setup>
 
</script>
 
<style scoped lang="scss">
  .footer {
    position: absolute;
    bottom: 84px;
    left: 624px;
    img {
      width: 103px;
      height: 119px;
    }
    .event {
      position: relative;
      left: 40px;
      bottom: 15px;
    }
    .panorama {
      position: relative;
      left: 80px;
      bottom: 34px;
    }
    .threeD {
      position: relative;
      left: 120px;
      bottom: 15px;
    }
    .orthophoto {
      position: relative;
      left: 160px;
    }
  }
  .intelligent-introduction-flying {
    position: absolute;
    left: 888px;
    bottom: 23px;
    img {
      width: 146px;
      height: 54px;
    }
  }
</style>