haoxuan
2023-12-08 bf7b5516246e58e955d67a3c97ab14727e75b6be
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
<template>
  <div class="knowledge-info">
    <div class="text-item" style="left: 20px; top: 80px">误报警</div>
    <div class="text-item" style="left: 0px; top: 190px">管路整动</div>
    <div class="text-item" style="left: 215px; top: 250px">冷却油度高</div>
    <div class="text-item" style="left: 160px; top: 20px">清洁度超差</div>
    <div class="text-item" style="left: 30px; top: 280px">清洁度超差</div>
    <div class="text-item" style="left: 265px; top: 120px">保护器报警</div>
    <img src="~@/assets/images/voice.png" />
  </div>
</template>
 
<script setup lang="ts"></script>
<style scoped lang="scss">
$status-ready: #024fdce8;
.knowledge-info {
  height: calc(100% - 100px - 32px);
  width: 400px;
  max-width: 430px;
  min-height: 330px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  img {
    width: 130px;
    height: 130px;
    position: absolute;
    top: 100px;
    left: 120px;
  }
  .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>