songshankun
2023-11-02 7e7424b2662e5b27dcc1c0d37f43e909e0b15ee1
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
<template>
  <div class="knowledge-info">
    <svg width="100%" height="100%">
      <text
        class="text-item"
        x="60"
        y="80"
        style="
          fill: rgb(211 211 211);
          font-weight: bold;
          padding: 5px;
          font-size: 14px;
          display: inline-block;
          border-radius: 8px;
          cursor: pointer;
          postion: absolute;
          left: 200;
          top: 40;
        "
      >
        误报警
      </text>
      <text
        class="text-item"
        x="50"
        y="170"
        text-anchor="middle"
        style="padding: 5px; font-size: 14px; display: inline-block; border-radius: 8px; fill: rgb(211 211 211)"
      >
        管路整动
      </text>
      <text
        class="text-item"
        x="245"
        y="250"
        text-anchor="middle"
        font-size="20px"
        style="padding: 5px; font-size: 14px; display: inline-block; border-radius: 8px; fill: rgb(211 211 211)"
      >
        冷却油度高
      </text>
      <text
        x="50"
        y="270"
        class="text-item"
        style="padding: 5px; font-size: 14px; display: inline-block; border-radius: 8px; fill: rgb(211 211 211)"
        text-anchor="middle"
      >
        清洁度超差
      </text>
      <text
        x="220"
        class="text-item"
        y="60"
        text-anchor="middle"
        font-size="20px"
        style="padding: 5px; font-size: 14px; display: inline-block; border-radius: 8px; fill: rgb(211 211 211)"
      >
        清洁度超差
      </text>
      <text
        x="280"
        class="text-item"
        y="110"
        text-anchor="middle"
        font-size="20px"
        style="padding: 5px; font-size: 14px; display: inline-block; border-radius: 8px"
      >
        保护器报警
      </text>
      <image xlink:href="~@/assets/images/voice.png" x="105" y="100" width="110" height="110" />
    </svg>
  </div>
</template>
 
<script setup lang="ts">
import { toRefs } from 'vue'
</script>
<style scoped lang="scss">
.knowledge-info {
  height: calc(100% - 90px - 32px);
  margin-top: 10px;
  .text-item {
    width: 100px;
    padding: 5px;
    font-size: 14px;
    display: inline-block;
    border-radius: 8px;
    fill: #fff;
    color: #fff;
    cursor: pointer;
  }
}
</style>