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
| <template>
| <div class="Infomation">
| <el-tag>氮氧化物: 29.93 标准: 100</el-tag>
| <el-tag>二氧化硫: 17.34标准: 50</el-tag>
| <el-tag>烟尘: 6.93标准: 30</el-tag>
| <el-tag>废气流量: 120343.18</el-tag>
| </div>
| </template>
|
| <script>
| export default {
| name: 'EchartsTab',
| data () {
| return {}
| }
| }
| </script>
|
| <style scoped lang="less">
| .Infomation{
| margin-left: 10px;
| }
| .el-tag{
| height: 25px;
| line-height: 25px;
| margin-right: 10px;
| font-size: 10px;
| background-color: rgba(0, 255, 246, 0.14);
| color: #00d0f9;
| border: none;
| }
| </style>
|
|