whyczyk
2022-03-01 f868ff46ef4fb25a01364f3c5d0fe220d32b7ad0
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
<template>
    <div class="flex-box" @click="toParentPage" @dblclick="dblclick">
        <div class="flex-box-body">
            <circle-chart id="circleChart" ref="circleChart"></circle-chart>
        </div>
        <div class="flex-box-footer">
            <ul class="list-view">
                <li v-for="item in chart.circle" :key="item.name" class="list-view-item">
                    <span class="item-name">{{item.name}}</span>
                    :
                    <span class="item-value" :style="{'color':item.color}">{{item.value}}</span>
                </li>
            </ul>
        </div>
    </div>
</template>
 
<script>
import CircleChart from "@/components/charts/CircleChart";
import { WebSocketClass } from '@/assets/js/socket'
export default {
    name: "MonCap",
    components: {
        CircleChart
    },
    data() {
        return {
            chart: {
                circle: [{
                    name: '低告警数量',
                    value: 0,
                    color: '#00DFFC',
                },
                {
                    name: '告警总数比例',
                    value: 0,
                    color: '#FF8B34',
                },
                {
                    name: '告警总数',
                    value: 0,
                    color: '#ED4882',
                },
                {
                    name: '告警机房总数',
                    value: 0,
                    color: '#2EEA9D',
                },
                {
                    name: '告警机房数比例',
                    value: 0,
                    color: '#F3E501',
                }
                ]
            },
            websock: null
        }
    },
    methods: {
        findParents(node, select) {
            var parent = node.parentNode;
            if (parent === null || parent.className.indexOf(select) != -1) {
                return parent;
            } else {
                return this.findParents(parent, select);
            }
        },
        dblclick(e) {
            this.isAllScreen = !this.isAllScreen
            let parents = this.findParents(e.currentTarget, 'vdr')
            if (this.isAllScreen) {
                this.parentsStyle = JSON.parse(JSON.stringify(parents.style));
                parents.style.transform = 'none';
                parents.style.width = '100%';
                parents.style.height = '100%';
                parents.style.position = 'fixed';
                parents.style.left = 0;
                parents.style.right = 0;
                parents.style.bottom = 0;
                parents.style.top = 0;
                parents.style.zIndex = 99999;
            } else {
                parents.style.transform = this.parentsStyle.transform;
                parents.style.width = this.parentsStyle.width;
                parents.style.height = this.parentsStyle.height;
                parents.style.position = this.parentsStyle.position;
                parents.style.left = 'initial';
                parents.style.right = 'initial';
                parents.style.bottom = 'initial';
                parents.style.top = 'initial';
                parents.style.zIndex = 'auto';
            }
            this.$refs.circleChart.resize();
        },
        toParentPage() {
            if (sessionStorage.getItem('newPlatform') == 1) {
                window.parent.parent.postMessage({
                    cmd: "syncPage",
                    params: {
                        pageInfo: {
                            label: "电池告警实时查询",
                            name: "batteryrTimequery",
                            src: "/alarmMager/batteryrTimequery",
                            closable: true
                        },
                    }
                }, "*");
            } else {
                window.parent.parent.postMessage({
                    cmd: "syncPage",
                    params: {
                        pageInfo: {
                            label: "电池实时告警",
                            name: "batteryrTimequery",
                            src: "#/batteryrTimequery",
                            closable: true
                        },
                    }
                }, "*");
            }
        },
        setData(data) {
            this.$nextTick(() => {
                if (data) {
                    this.chart = data;
                    let chart = this.$refs.circleChart;
                    chart.setData(data.circle);
                    chart.resize();
                } else {
                    this.postData()
                }
            })
        },
        postData() {
            let userId = localStorage.getItem('userId');
            this.websock = new WebSocketClass(`/screen/batteryAlarm/monCapacity/${userId}`, this.wsMessage)
        },
        wsMessage(res) {
            if (res.code == 1) {
                let optionData = {
                    circle: [{
                        name: '单体容量高告警',
                        value: 0,
                        color: '#00DFFC',
                    },
                    {
                        name: '单体容量低告警',
                        value: 0,
                        color: '#ED4882',
                    },
                    ]
                }
                let resData = res.data;
                for (let key in resData) {
                    optionData.circle.map(item => {
                        if (item.name == key) {
                            if (typeof resData[key] == 'string') {
                                item.value = Number(resData[key].split('%')[0])
                            } else {
                                item.value = resData[key]
                            }
                        }
                    })
                }
                this.chart = optionData;
                let chart = this.$refs.circleChart;
                chart.setData(optionData.circle);
                chart.resize();
            }
        },
        outClear() {
            this.websock.closeMyself()
            this.websock = null
            window.removeEventListener('resize', this.resize);
        },
        resize() {
            this.$refs.circleChart.resize();
        }
    }
}
</script>
 
<style scoped>
.flex-box {
    display: flex;
    height: 100%;
    align-items: center;
}
 
.flex-box-body {
    flex: 1;
    height: 100%;
}
 
.flex-box-footer {
    padding: 0 8px;
}
 
.list-view li {
    list-style: none;
}
 
.list-view-item {
    white-space: nowrap;
    padding: 8px 0;
}
</style>