charles
2024-04-29 b95cf940af8e01e4eca30b2599b029c2f645bd1e
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
<template>
  <div class="knowledge-info">
    <div class="text-item text-item1">误报警</div>
    <div class="text-item text-item2">管路整动</div>
    <div class="text-item text-item3">冷却油度高</div>
    <div class="text-item text-item4">清洁度超差</div>
    <div class="text-item text-item5">清洁度超差</div>
    <div class="text-item text-item6">保护器报警</div>
    <img src="~@/assets/images/voice.png" />
  </div>
</template>
 
<script setup lang="ts"></script>
<style scoped lang="scss">
$status-ready: #024fdce8;
.knowledge-info {
  height: 100%;
  width: 100%;
  min-height: 100px;
  margin: 0 auto;
  // margin-top: 10px;
  position: relative;
  .text-item1 {
    left: 20px;
    top: 80px;
  }
  .text-item2 {
    left: 0px;
    top: 190px;
  }
  .text-item3 {
    left: 215px;
    top: 250px;
  }
  .text-item4 {
    left: 160px;
    top: 20px;
  }
  .text-item5 {
    left: 30px;
    top: 280px;
  }
  .text-item6 {
    left: 240px;
    top: 150px;
  }
  img {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 80px;
    left: 110px;
  }
  .text-item {
    color: #e9e7e7;
    cursor: pointer;
    font-weight: bold;
    padding: 6px 15px;
    font-size: 14px;
    display: inline-block;
    border-radius: 10px;
    position: absolute;
    background: $status-ready;
  }
}
</style>