111
web
2025-07-07 9ce4e119fdc14459f5a9e2f40403d1755e17da8b
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
95
96
97
98
99
100
101
102
103
<template>
    <div class="item">
        <div class="item-air">
            <div class="gas">
                <div class="gas-t">CH₄</div>
                <div class="gas-CH">
                    <img src="@/assets/images/screen/CH4.png" alt="" />
                </div>
                <div class="gas-data"><span>1.1</span>%LEL</div>
            </div>
            <div class="gas">
                <div class="gas-t">H₂S</div>
                <div class="gas-H2">
                    <img src="@/assets/images/screen/H2S.png" alt="" />
                </div>
                <div class="gas-data"><span>1.2</span>%LEL</div>
            </div>
        </div>
        <div class="item-address">
            安装位置:重庆市丰都县龙城大道435号安装位置:重庆市丰都县龙城大道435号
        </div>
        <div class="status">
            <span>运行状态:</span>
            <span class="val">正常运行</span>
        </div>
    </div>
</template>
 
<script setup>
 
</script>
 
<style lang="scss" scoped>
.item{
    width: 144px;
    height: 164px;
    border-radius: 10px;
    background: radial-gradient( rgba(50,154,196,0.5) 0%, rgba(21,74,131,0.5) 100%);
    box-shadow: inset 0px 0px 10px 0px rgba(50,154,196,0.8);
    padding: 8px;
    box-sizing: border-box;
    .item-air{
        display: flex;
        justify-content: center;
        gap: 0.3rem;
        .gas{
            width: 60px;
            height: 67px;
            background-image: url('@/assets/images/screen/bg-air.png');
            background-repeat: no-repeat;
            background-size: cover;
            padding: 0.2rem;
            box-sizing: border-box;
            font-size: 0.6rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            .gas-CH{
                height: 30px;
                line-height: 30px;
                text-align: center;
                img{
                    width: 28px;
                    height: 30px;
                }
            }
            .gas-H2{
                height: 30px;
                line-height: 40px;
                text-align: center;
                img{
                    width: 25px;
                    height: 16px;
                }
            }
            .gas-data{
                text-align: center;
                span{
                    font-size: 0.7rem;
                }
            }
        }
    }
    .item-address{
        font-size: 0.8rem;
        margin-top: 0.6rem;
        width: 100%;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .status{
        font-size: 0.8rem;
        margin-top: 0.6rem;
        .val{
            color: rgb(40, 250, 40);
            font-size: 0.8rem;
        }
    }
}
</style>