web
2025-06-30 bbc3b7e9f89369a26eb12deeb10cbd113e6dc02a
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<template>
    <div class="data">
        <div class="data-l">
            <div class="left">
                <div class="left-item">
                    <div class="item-t">报警次数</div>
                    <div class="item-c"></div>
                </div>
                <div class="left-item">
                    <div class="item-t">街道统计</div>
                    <div class="item-c"></div>
                </div>
            </div>
        </div>
        <div class="data-c">
            <div class="center">
                <div class="center-item">
                    <div class="item-t">报警记录</div>
                    <div class="item-c"></div>
                </div>
                <div class="center-item">
                    <div class="item-t">气体浓度监测曲线</div>
                    <div class="item-c"></div>
                </div>
            </div>
        </div>
        <div class="data-r">
            <div class="right">
                <div class="right-item">
                    <div class="item-t">短信报警</div>
                    <div class="item-c"></div>
                </div>
                <div class="right-item">
                    <div class="item-t">邮箱报警</div>
                    <div class="item-c"></div>
                </div>
            </div>
        </div>
    </div>
</template>
 
<script setup>
 
</script>
 
<style scoped lang="scss">
    .data{
        height: 100%;
        color: #fff;
        display: flex;
        justify-content: space-between;
        &-l{
            width: 25%;
            height: 100%;
            .left{
                height: 100%;   
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                .left-item{
                    width: 100%;
                    height: 49%;
                    background-image: url('@/assets/images/screen/ct-default.png');
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    .item-t{
                        width: 100%;
                        height: 3rem;
                        line-height: 3rem;
                        padding-left: 3.5rem;
                    }
                    .item-c{
                        height: calc(100% - 3rem);
                        padding: 0.5rem;
                    }
                }
            }
        }
        &-c{
            width: 49%;
            height: 100%;
            .center{
                height: 100%;   
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                .center-item{
                    height: 49%;
                    background-image: url('@/assets/images/screen/ct-large.png');
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    .item-t{
                        height: 3rem;
                        line-height: 3rem;
                        padding-left: 4.5rem;
                    }
                    .item-c{
                        height: calc(100% - 3rem);
                        padding: 0.5rem;
                    }
                }
            }
        }
        &-r{
            width: 25%;
            height: 100%;
            .right{
                height: 100%;   
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                .right-item{
                    height: 49%;
                    background-image: url('@/assets/images/screen/ct-default.png');
                    background-size: 100% 100%;
                    background-repeat: no-repeat;
                    .item-t{
                        height: 3rem;
                        line-height: 3rem;
                        padding-left: 3rem;
                    }
                    .item-c{
                        height: calc(100% - 3rem);
                        padding: 0.5rem;
                    }
                }
            }
        }
    }
</style>