web
10 天以前 53dea912dd48c7435720cd9e83e3da53f0a45109
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<template>
    <div class="container">
        <div class="center" >
            <!-- 地图窗口 -->
            <div class="map">
                <div class="point-box" v-if="tucengVal === 0">
                    <div class="apoint" v-for="(item, index) in pointList" :key="index"
                         :style="`left: ${item?.left}%; top: ${item?.top}%`" @click="clickMsgFun(index)">
                        <img src="../../../assets/images_lc/a-point.png" alt="" />
                        <div class="message" v-show="showMsg === index">
                            <div class="message-item">
                                <span class="name">泵房名称:</span>
                                <span class="val">{{item.name}}</span>
                            </div>
                            <div class="message-item">
                                <span class="name">水浸状态:</span>
                                <span class="val-status">{{item.shuijin}}</span>
                            </div>
                            <div class="message-item">
                                <span class="name">运行时长:</span>
                                <span class="val-status">{{}}</span>
                            </div>
                            <div class="message-item">
                                <span class="name">工作状态:</span>
                                <span class="val-status">{{}}</span>
                            </div>
                            <div class="message-item">
                                <span class="name">水池水位:</span>
                                <span class="val-status">{{item.yewei}}</span>
                            </div>
                            <div class="message-item">
                                <span class="name">其他详细信息:</span>
                                <router-link class="val" to="/screen/pumpInfo">点击跳转</router-link>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="right">
            <div class="right-box">
                <!-- 实时监控 -->
                <div class="jiankong">
                    <div class="jiankong-t">实时监控</div>
                    <div class="jiankong-c">
                        <div class="switch">
                            <div class="switch-l">泵房监控</div>
                            <div class="switch-r">
                                <div class="more" :class="{active: selectType==='two'}" @click="changeType('two')">多屏模式 </div>
                                <div class="single" :class="{active: selectType==='single'}" @click="changeType('single')">单屏模式</div>
                            </div>
                        </div>
                        <div class="video-box">
                            <div class="two" v-if="selectType==='two'">
                                <div class="list" v-for="(item, index) in showList" :key="index">
                                    <div class="item" v-if="item?.deviceId">
                                        <VideoPlayer :item="item" />
                                    </div>
                                    <div v-else class="item"></div>
                                </div>
                            </div>
                            <div class="single" v-else>
                                <div class="item" v-if="showList[0]?.deviceId">
                                    <VideoPlayer :item="showList[0]" />
                                </div>
                                <div v-else class="item"></div>
                            </div>
                        </div>
                    </div>
                </div>
                <!-- 报警记录 -->
                <div class="warnRecord">
                    <div class="warnRecord-title">报警记录</div>
                    <div class="warnRecord-info">
                        <div class="into-t">报警信息</div>
                        <div class="info-list">
                            <div class="item" v-for="(item, index) in warnList" :key="index">
                                <el-tooltip
                                    effect="dark"
                                    :content="item.pointName"
                                    placement="top"
                                >
                                    {{item.pointName}}
                                </el-tooltip>
                                <el-tooltip
                                    effect="dark"
                                    :content="item.facilityName"
                                    placement="top"
                                >
                                    {{item.facilityName}}
                                </el-tooltip>
                                <el-tooltip
                                    effect="dark"
                                    :content="item.description"
                                    placement="top"
                                >
                                    {{item.description}}
                                </el-tooltip>
                            </div>
                        </div>
                    </div>
                    <div class="warnRecord-datashow">
                        <div ref="warningRef" class="warning" />
                    </div>
                </div>
            </div>
        </div>
    </div>
</template>
 
<script setup lang="ts">
import { use } from "echarts/core";
import * as echarts from 'echarts/core';
import {GridComponent, TooltipComponent, LegendComponent} from "echarts/components";
import { LineChart, PieChart } from "echarts/charts";
import { UniversalTransition, LabelLayout } from "echarts/features";
import { CanvasRenderer } from "echarts/renderers";
import {onMounted, reactive, ref} from "vue";
import {getPumpData} from '@/api/screen/index.js'
import {getVideoList} from '@/api/screen/video.js'
import VideoPlayer from "@/components/VideoPlayer/VideoPlayer.vue";
 
 
use([
    GridComponent,
    LineChart,
    CanvasRenderer,
    UniversalTransition,
    TooltipComponent,
    LegendComponent,
    PieChart,
    CanvasRenderer,
    LabelLayout,
]);
 
const warningRef = ref();
let warningCharts = null;
 
const tucengVal = ref(0);
const selectType = ref('single')
const videoList = ref([])
const showList = ref([])
const warnList = ref([])
const showMsg = ref(0)
const pointList = ref([])
 
const clickMsgFun = (index: number) => {
    showMsg.value = showMsg.value === index ? null : index;
}
 
const setWarningCharts = (data) => {
    if(warningRef.value) {
        warningCharts = echarts.init(warningRef.value);
        const option = {
            tooltip: {
                trigger: 'item'
            },
            series: [
                {
                    type: 'pie',
                    radius: '50%',
                    data: data,
                    emphasis: {
                        itemStyle: {
                            shadowBlur: 10,
                            shadowOffsetX: 0,
                            shadowColor: 'rgba(0, 0, 0, 0.5)'
                        }
                    }
                }
            ]
        }
        warningCharts.setOption(option);
    }
}
 
// 切换播放模式
const changeType = (type) => {
    selectType.value = type
    showList.value = []
    if(type === 'two') {
        showList.value = videoList.value.slice(0, 2).concat(Array(2 - videoList.value.length).fill(null))
    } else {
        showList.value = videoList.value.slice(0, 1)
    }
}
 
// 获取报警数据
const getWarning = () => {
    getHomeWarning().then(res => {
        warnList.value = res.data.alarmHistoryVOList
        let data = [
            { value: res.data.facilityCount, name: '设备启动异常' },
            { value: res.data.waterEnterCount, name: '进水压力异常' },
            { value: res.data.waterOutCount, name: '出口压力异常' },
        ]
        setWarningCharts(data)
    })
}
 
// 获取视频列表
const getVideo = async (id) => {
    if(id) {
        getVideoList({pointId: id}).then(res => {
            videoList.value = res.data;
            changeType(selectType.value)
        })
    }
}
 
// 获取泵房信息
const getPumpInfo = () => {
    const pump = []
    getPumpData().then(res => {
        res.data.forEach((el, index) => {
            const yewei = el.parameterVOList.find(item => item.columnsCode === '1001')
            const shuijin = el.parameterVOList.find(item => item.columnsCode === 'SQ')
            pump.push({
                left: 84, top: 28,
                name: el.facilityName,
                yewei: yewei.columnValue + yewei?.columnsUnits,
                shuijin: !Number(shuijin.columnValue) ? '正常' : '异常',
            })
        })
 
        pointList.value = pump
    })
}
 
onMounted(() => {
    getPumpInfo()
    // getWarning()
})
</script>
 
<style lang="scss" scoped>
.container {
    background-image: url("@/assets/images_lc/map.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: background-size 0.3s ease;
}
.homeSelectName{
    .el-radio-group{
        flex-direction: column;
        align-items: flex-start;
        .el-radio{
            font-size: 1rem;
        }
    }
    .clear{
        margin: 5px 30px 10px 20px;
        text-align: right;
        color: #3aa8ef;
        font-size: 0.8rem;
        cursor: pointer;
    }
}
 
.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    color: white;
    overflow: hidden;
 
    .center {
        width: 80%;
        display: flex;
        flex-direction: column;
        .map {
            height: 100%;
            .point-box{
                width: 100%;
                height: 100%;
                position: relative;
                .apoint{
                    position: absolute;
                    img{
                        width: 1.5rem;
                        height: 3rem
                    }
                    .message{
                        width: 12rem;
                        height: 14rem;
                        background: url("@/assets/images_lc/point-message.png") no-repeat;
                        backdrop-filter: blur(3px);
                        background-size: 100% 100%;
                        padding: 0 0.2rem;
                        position: absolute;
                        right: 2rem;
                        top: 0;
                        z-index: 100;
                        .message-item{
                            font-size: 0.7rem;
                            padding: 0.5rem 0 0.5rem 0.9rem;
                            .name{
                                margin-right: 0.5rem;
                            }
                            .val-status{
                                color: #22E195;
                            }
                        }
                    }
                }
            }
        }
    }
 
    .right {
        width: 20%;
        &:hover{
            .right-box{
                transform: translateX(0);
            }
        }
        .right-box{
            height: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            transform: translateX(100%);
            transition: all .5s;
        }
        .jiankong {
            height: 45%;
            background-image: url('@/assets/images_lc/realTimeMonitoring.png');
            backdrop-filter: blur(3px);
            background-repeat: no-repeat;
            background-size: 100% 100%;
            &-t {
                background-image: url('@/assets/images_lc/title_font.png');
                padding-left: 16%;
                font-size: 1.2rem;
            }
 
            &-c {
                height: 90%;
                .switch {
                    height: 15%;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    padding: 0 1.5rem;
 
                    .switch-l {
                        font-weight: 700;
                    }
                    .switch-r{
                        display: flex;
                        gap: 1rem;
                    }
                    .more {
                        width: 6rem;
                        height: 1.5rem;
                        line-height: 1.5rem;
                        text-align: center;
                        background-image: url('@/assets/images_lc/switch.png');
                        background-size: 100% 100%;
                        color: #cfcfcf;
                        font-size: 0.9rem;
                    }
 
                    .single {
                        width: 6rem;
                        height: 1.5rem;
                        line-height: 1.5rem;
                        text-align: center;
                        background-image: url('@/assets/images_lc/switch.png');
                        background-size: 100% 100%;
                        color: #cfcfcf;
                        font-size: 0.9rem;
                    }
                    .active{
                        color: #fff;
                    }
                }
                .video-box{
                    height: 85%;
                    padding: 0 1rem;
                    .two{
                        width: 100%;
                        height: 100%;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        .list{
                            width: 100%;
                            height: 48%;
                            .item{
                                height: 100%;
                                background-color: #000;
                            }
                        }
                    }
                    .single{
                        width: 100%;
                        height: 100%;
                        .item{
                            height: 95%;
                            width: 100%;
                            background-color: #000;
                        }
                    }
                }
            }
        }
 
        .warnRecord {
            height: 55%;
            background-image: url('@/assets/images_lc/warnRecord.png');
            backdrop-filter: blur(3px);
            background-repeat: no-repeat;
            background-size: 100% 100%;
            display: flex;
            flex-direction: column;
            .warnRecord-title {
                background-image: url('@/assets/images_lc/title_font.png');
                padding-left: 16%;
                font-size: 1.3rem;
            }
            .warnRecord-info {
                width: 90%;
                height: 50%;
                margin: auto;
                overflow-y: scroll;
                &::-webkit-scrollbar{
                    display: none;
                }
                .into-t{
                    height: 15%;
                    font-size: 1.2rem;
                    padding-top: 0.3rem;
                }
                .info-list{
                    height: 85%;
                    .item{
                        padding: 0.5rem 0;
                        display: flex;
                        justify-content: space-between;
                        font-size: 0.8rem;
                        :deep(.el-only-child__content){
                            width: 30%;
                            overflow: hidden;
                            text-overflow: ellipsis;
                            white-space: nowrap;
                        }
                    }
                }
            }
            .warnRecord-datashow {
                height: 50%;
                .warning {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}
</style>