whyczyk
2021-10-11 eb20bb74e68c8ccc815a5fa2d556e19c8b407af3
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
<template>
    <div class="echarts-wrapper" @click="toParentPage">
        <div class="echarts-content" ref="monomerVoltage">
 
        </div>
    </div>
</template>
 
<script>
import * as echarts from 'echarts';
import { WebSocketClass } from '@/assets/js/socket'
// 单体电压、内阻和温度 页面
export default {
    name: "monomerVoltage",
    chart: "",
    chartData: {},
    props: {
        id: {
            require: true,
            type: String,
            default: "",
        },
        name: {
            type: String,
            default: ""
        },
        top: {
            type: Number,
            default: 15,
        },
        bottom: {
            type: Number,
            default: 60
        },
        space: {
            type: Number,
            default: 4
        },
    },
    data() {
        return {
            userId: "",
            websock: null
        }
    },
    methods: {
        toParentPage() {
            window.parent.parent.postMessage({
                cmd: "syncPage",
                params: {
                    pageInfo: {
                        label: "电池实时告警",
                        name: "batteryrTimequery",
                        src: "#/batteryrTimequery",
                        closable: true
                    },
                }
            }, "*");
        },
        setOption(opt) {
            this.$options.chart.setOption(opt);
        },
        postData() {
            let userId = localStorage.getItem('userId');
            this.websock = new WebSocketClass(`/screen/batteryAlarm/monVRTAnalysis/${userId}`, this.wsMessage)
        },
        wsMessage(res) {
            let self = this;
            let yAxisData = [];
            let Data = [{
                name: '告警数',
                type: 'bar',
                data: [],
                itemStyle: {
                    normal: {
                        color: (params) => {
                            let colorList = ['#37a9b3', '#f3535f', '#ff8b00', '#757ffb', '#4ba0d9', '#7fc57c']
                            return colorList[params.dataIndex]
                        }
                    },
                },
            }];
            if (res.code == 1) {
                let result = res.data;
                for (const key in result) {
                    for (const item in result[key]) {
                        yAxisData.push(item);
                        Data[0].data.push(result[key][item])
                    }
                }
                self.optionSet(yAxisData, Data);
            }
        },
        outClear() {
            this.websock.closeMyself()
            this.websock = null
            window.removeEventListener('resize', this.resize);
        },
        setData(dataList) {
            let self = this;
            // 存值
            self.$options.chartData = dataList;
            if (!dataList) {
                self.postData()
            } else {
                self.optionSet(dataList.yAxisData, dataList.data);
            }
        },
        optionSet(yAxisData, data) {
            let option = {
                tooltip: {
                    trigger: 'axis',
                    axisPointer: {
                        type: 'shadow'
                    }
                },
                grid: {
                    top: 20,
                    right: 40,
                    bottom: 20,
                    left: '3%',
                    containLabel: true
                },
                xAxis: {
                    type: 'value',
                    //坐标值标注
                    axisLabel: {
                        show: true,
                        textStyle: {
                            color: '#fff',
                        }
                    },
                    //分格线
                    splitLine: {
                        show: true,
                        lineStyle: {
                            color: '#254389'
                        }
                    },
                    boundaryGap: [0, 0.01]
                },
                yAxis: {
                    type: 'category',
                    //坐标轴
                    axisLine: {
                        lineStyle: {
                            color: "#254389"
                        }
                    },
                    //坐标值标注
                    axisLabel: {
                        show: true,
                        textStyle: {
                            color: '#fff',
                        }
                    },
 
 
                    data: yAxisData,//['高告警数量', '低告警数量', '告警总数', '告警总数比例', '告警机房总数', '告警机房总数比例']
                },
                series: data
                // [
                //     {
                //         name: '单体电压',
                //         type: 'bar',
                //         data: [24, 18, 38, 31, 24, 13],
                //         itemStyle:{
                //             color:'#FED601'
                //         }
                //     },
                //     {
                //         name: '单体内阻',
                //         type: 'bar',
                //         data: [19, 28, 46, 24, 14, 9],
                //         itemStyle:{
                //             color:'#67E0E3'
                //         }
                //     },
                //     {
                //         name: '单体温度',
                //         type: 'bar',
                //         data: [15, 22, 36, 15, 21, 8],
                //         itemStyle:{
                //             color:'#EB6F49'
                //         }
                //     }
                // ]
            };
            this.setOption(option);
        },
        resize() {
            let self = this;
            setTimeout(function () {
                self.$options.chart.resize();
                self.setData(self.$options.chartData);
            }, 300)
 
        }
    },
    mounted() {
        //   获取userId
        this.userId = localStorage.getItem("userId");
        // 基于准备好的dom,初始化echarts实例
        this.$options.chart = echarts.init(this.$refs.monomerVoltage);
 
        window.addEventListener('resize', this.resize);
    },
    destroyed() {
        window.removeEventListener('resize', this.resize);
    }
}
</script>
 
<style scoped>
</style>