zhuguifei
2025-08-22 8304eac2a45a32b00563c03a2f3fd303ecd5872a
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
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
<template>
    <view>
        <view class="card-box center dynamic shadow">
            <view class="title-box margin-bottom-sm">
                <view style="width: 100vw;" class="left justify-between">
                    <view class="flex align-center">
                        <uni-text class="cuIcon-titles text-blue"></uni-text>
                        <view class="title">最近报警</view>
                    </view>
                    <view>
                        <text class="text-blue text-sm">更多></text>
                    </view>
 
                </view>
 
            </view>
 
 
            <view class="borderTop">
                <view class="h-table">
                    <view class="h-tr h-tr-2 ">
                        <view class="h-td">机台</view>
                        <view class="h-td">故障</view>
                        <view class="h-td">时间</view>
                        <view class="h-td">类型</view>
                    </view>
                    <view class="h-tr h-tr-2" v-for="(item,index) in faultList">
                        <view class="h-td">{{item.equName}}</view>
                        <view class="h-td text-ellipsis">{{item.faultName}}</view>
                        <view class="h-td text-ellipsis">{{item.faultTimeStr}}</view>
                        <view class="h-td">{{item.faultType===1?'故障':'告警'}}</view>
                    </view>
 
                </view>
 
            </view>
 
 
        </view>
 
        <view class="card-box center dynamic shadow">
            <view class="title-box margin-bottom-sm">
                <view style="width: 100vw;" class="left justify-between">
                    <view class="flex align-center">
                        <uni-text class="cuIcon-titles text-blue"></uni-text>
                        <view class="title">报警统计</view>
                    </view>
                    <view>
                        <text class="text-gray text-sm"></text>
                    </view>
 
                </view>
 
            </view>
 
 
            <view class="chartsMain" style="height: 400rpx;">
                <!-- <qiun-data-charts type="mount" :opts="opts" :ontouch='true' :animation="true" :chartData="mountData" /> -->
                <qiun-data-charts canvasId="chat1"  type="column" :errorMessage="errorMessage1"
                    :opts="opts" :ontouch='true' :animation="true" :chartData="statisData" />
 
            </view>
        </view>
 
 
        <view class="card-box center dynamic shadow">
            <view class="title-box margin-bottom-sm">
                <view style="width: 100vw;" class="left justify-between">
                    <view class="flex align-center">
                        <uni-text class="cuIcon-titles text-blue"></uni-text>
                        <view class="title">报警对比</view>
                    </view>
                    <view>
                        <text class="text-gray text-sm"></text>
                    </view>
 
                </view>
 
            </view>
 
            <view class="chartsMain">
                <qiun-data-charts canvasId="chat2" type="pie"   :errorMessage="errorMessage2"
                    :opts="optsPie" :ontouch='true' :animation="true" :chartData="pieData" />
 
            </view>
        </view>
 
 
 
        <view class="card-box center dynamic shadow">
            <view class="title-box margin-bottom-sm">
                <view style="width: 100vw;" class="left justify-between">
                    <view class="flex align-center">
                        <uni-text class="cuIcon-titles text-blue"></uni-text>
                        <view class="title">报警频率</view>
                    </view>
                    <view>
                        <text class="text-gray text-sm"></text>
                    </view>
 
                </view>
 
            </view>
 
 
            <view class="chartsMain" style="height: 500rpx;">
                <!-- <qiun-data-charts type="mount" :opts="{extra:{mount:{type:'mount',widthRatio:1.5}}}"
                :chartData="Mount" /> -->
                <qiun-data-charts canvasId="chat3" type="word"  :errorMessage="errorMessage3"
                    :chartData="wordData" />
            </view>
        </view>
 
        <view class="card-box bot dynamic shadow">
            <view class="title-box margin-bottom-sm">
                <view style="width: 100vw;" class="left justify-between">
                    <view class="flex align-center">
                        <uni-text class="cuIcon-titles text-blue"></uni-text>
                        <view class="title">报警分析</view>
                    </view>
                    <view>
                        <text class="text-gray text-sm"></text>
                    </view>
 
                </view>
 
            </view>
 
 
            <view class="chartsMain" style="height: 500rpx;">
                <qiun-data-charts canvasId="chat4" type="line"   :opts="optsStep"
                    :errorMessage="errorMessage4" :ontouch='true' :animation="true" :chartData="statisData" />
 
                <!-- <qiun-data-charts type="radar" :opts="optsRadar" :chartData="dataRadar" /> -->
            </view>
        </view>
 
 
    </view>
 
 
</template>
 
<script>
    import dayjs from 'dayjs'
    export default {
        data() {
            return {
                "PieA": {
                    "series": [{
                        "data": [
 
                        ]
                    }]
                },
                errorMessage1: "",
                errorMessage2: "",
                errorMessage3: "",
                errorMessage4: "",
                faultList: [],
                pieData: {
                    "series": [{
                        "data": []
                    }]
                },
                statisData: {
                    series: [],
                    categories: []
                },
                wordData: {
                    series: []
                },
                optsStep: {
                    enableScroll: true,
                    xAxis: {
                        marginTop: 10,
                        itemCount: 8,
                        rotateLabel: true
                    },
                    extra: {
                        line: {
                            type: 'step'
                        }
                    }
                },
                opts: {
                    enableScroll: true,
                    xAxis: {
                        marginTop: 10,
                        itemCount: 8,
                        rotateLabel: true
                    },
                    legend: {
                        show: false
                    },
                    yAxis: {
                        data: [{
                            min: 0
                        }]
                    },
                    extra: {
                        column: {
                            width: 12,
                            seriesGap: 5,
                            barBorderRadius: [6, 6, 6, 6]
                        }
                    }
                },
                optsPie: {
                    padding: [5, 5, 5, 5],
                    legend: {
                        show: false
                    },
                    fontSize: 12,
                    extra: {
                        pie: {
                            activeOpacity: 0.5,
                            activeRadius: 10,
                            offsetAngle: 0,
                            labelWidth: 1,
                            border: true,
                            borderWidth: 3,
                            borderColor: "#FFFFFF",
                            linearType: "custom"
                        }
                    }
                },
 
            }
        },
        mounted() {
            setTimeout(() => {
                this.init()
            }, 300)
        },
        methods: {
            init() {
                // 获取N天前的0点0分0秒
                let daysAgo = dayjs().subtract(3, 'day').startOf('day').format('YYYY-MM-DD HH:mm:ss');
                // 获取今天的23点59分59秒
                let today = dayjs().endOf('day').format('YYYY-MM-DD HH:mm:ss');
                
                let params = {
                    column: 'createTime',
                    order: 'desc',
                    startTime_begin: daysAgo,
                    startTime_end: today,
                    pageNo: 1,
                    pageSize: 3
                }
                this.$api.queryHisFaultList(params).then((res) => {
                    this.faultList = res.result.records
                }).catch(res => {
 
                })
        
 
                let chartParam = {
                    startTime_begin: daysAgo,
                    startTime_end: today,
                }
                this.statisData = {}
                this.pieData = {}
                this.wordData = {}
                this.$api.queryHisFaultChartList(chartParam).then((res) => {
 
                    // 柱状图
                    const statis = {
                        series: [],
                        categories: []
                    };
                    //饼图
                    const pieData = {
                        series: [{
                            data: []
                        }]
                    };
                    //词云图
                    const wordData = {
                        series: []
                    };
                    this.$emit('handleData', res)
                    // 检查 res 是否为 null 或者不是一个数组
                    if (!Array.isArray(res) || res === null || res.length === 0) {
 
                        this.errorMessage1 = "暂无数据"+ dayjs().format('HH:mm:ss');
                        this.errorMessage2 = "暂无数据"+ dayjs().format('HH:mm:ss');
                        this.errorMessage3 = "暂无数据"+ dayjs().format('HH:mm:ss');
                        this.errorMessage4 = "暂无数据"+ dayjs().format('HH:mm:ss');
                        return;
                    }
 
 
                   console.error(res)
 
                    // 单次遍历 res,同时寻找最大 ecount 并构建 categories、data 和 pieData
                    const result = res.reduce((acc, item) => {
                        if (item.faultType === 1) {
                            acc.categories.push(item.faultName);
                            const value = item.ecount;
                            acc.data.push({
                                value,
                                color: undefined // 先不设定颜色
                            });
 
                        }
                        // 更新最大 ecount
                        if (item.ecount > acc.maxEcount) {
                            acc.maxEcount = item.ecount;
                        }
 
                        return acc;
                    }, {
                        maxEcount: 0,
                        categories: [],
                        data: []
                    });
 
                    // 第二次遍历 data 数组,为所有最大 ecount 设置颜色
                    result.data.forEach((item, index) => {
                        if (item.value === result.maxEcount) {
                            result.data[index].color = '#f04864';
                        }
                    });
 
                    // 将处理结果赋值给 statis
                    statis.series.push({
                        name: "故障",
                        data: result.data.map(item => 'color' in item ? item : item.value)
                    });
                    statis.categories = result.categories;
 
 
 
                    res.filter(item => item.faultType == 1).forEach(item => {
                        // 构建 pieData
                        pieData.series[0].data.push({
                            name: item.faultName,
                            value: item.ecount,
                            labelText: item.faultName + ":" + item.ecount + "次"
                        });
                    })
 
 
 
                    // 设置到组件属性
                    this.statisData = statis;
                    this.pieData = pieData;
                    if (this.statisData.series.length === 0) {
                        this.errorMessage1 = "暂无数据"+ dayjs().format('HH:mm:ss');
                        this.errorMessage4 = "暂无数据"+ dayjs().format('HH:mm:ss');
                    }
 
                    if (this.pieData.series[0].data.length === 0) {
                        this.errorMessage2 = "暂无数据"+ dayjs().format('HH:mm:ss');
                    }
 
 
                    const cdata = res.filter(item => item.faultType === 1).map(item => ({
                        faultName: item.faultName,
                        ecount: item.ecount
                    }));
                    console.error(cdata)
                    const wordCloudData = this.generateWordCloudData(cdata)
 
                    wordData.series = wordCloudData
                    this.wordData = wordData
                    console.error(this.wordData)
                    if (this.wordData.series.length === 0) {
                        this.errorMessage3 = "暂无数据"+ dayjs().format('HH:mm:ss');
                    }
 
 
                }).catch(res => {
 
                })
 
 
            },
            generateWordCloudData(data) {
                // 定义字体大小范围
                const minFontSize = 10;
                const maxFontSize = 20;
 
                // 如果数据为空或不是数组,则返回空数组
                if (!Array.isArray(data) || data.length === 0) {
                    return [];
                }
 
                // 找到最大和最小的故障次数
                let minCount = Infinity;
                let maxCount = -Infinity;
 
                data.forEach(item => {
                    if (item.ecount < minCount) minCount = item.ecount;
                    if (item.ecount > maxCount) maxCount = item.ecount;
                });
 
                // 如果所有故障次数都相同,则直接为每个条目设置相同的字体大小
                if (minCount === maxCount) {
                    return data.map(item => ({
                        name: item.faultName,
                        textSize: maxFontSize
                    }));
                }
 
                // 计算每个条目的字体大小
                const wordCloudData = data.map(item => {
                    const fontSize = ((maxFontSize - minFontSize) * (item.ecount - minCount)) / (maxCount -
                        minCount) + minFontSize;
                    return {
                        name: item.faultName,
                        textSize: Math.round(fontSize) // 可选:四舍五入到最接近的整数
                    };
                });
                return wordCloudData;
            },
 
 
        }
    }
</script>
 
<style lang="scss" scoped>
    @import "components/table/helang-table";
 
    .app {}
 
    .card-box {
        margin: 20rpx;
        padding: 20rpx;
        box-sizing: border-box;
        background-color: white;
        border-radius: 20rpx;
        font-family: Helvetica Neue, Helvetica, sans-serif;
 
    }
 
    .text-ellipsis {
        white-space: nowrap;
        /* 防止文本换行 */
        overflow: hidden;
        /* 超出部分隐藏 */
        text-overflow: ellipsis;
        /* 超出部分用省略号表示 */
        max-width: 100%;
        /* 设置最大宽度 */
 
    }
 
 
    .top {
        margin: 0 20rpx;
        border-radius: 0;
        border-top-left-radius: 20rpx;
        border-top-right-radius: 20rpx;
        border-bot-left-radius: 0;
        border-bot-right-radius: 0;
 
    }
 
    .center {
        margin: 0 20rpx;
        border-radius: 0;
 
    }
 
    .bot {
        margin: 0 20rpx 20rpx 20rpx;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bot-left-radius: 20rpx;
        border-bot-right-radius: 20rpx;
    }
 
 
    .title-box {
        display: flex;
        flex-direction: row;
        align-items: center;
 
        .left {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
                font-weight: bold;
            }
        }
 
        .right {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
                font-weight: bold;
            }
        }
    }
 
    .info-box {
        margin-top: 20rpx;
        display: flex;
        flex-direction: row;
        align-items: center;
 
        .left {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
            }
        }
 
        .right {
            display: flex;
            align-items: center;
 
            .title {
                margin: 0 10rpx;
            }
        }
    }
 
 
    .chartsMain {
        width: 100%;
        height: 320rpx;
        padding-top: 15rpx;
        background: #fff;
        margin-bottom: 24rpx;
        border-top: 2rpx solid #f2f2f2;
 
        .charts {
            width: 50%;
            height: 450rpx;
            box-sizing: border-box;
        }
    }
 
    .tab-box {
        display: flex;
        justify-content: center;
        /* 强制水平居中 */
    }
 
    .swiper {
        height: 2116rpx;
    }
 
    .swiper-item-view {
        height: 2116rpx;
 
 
    }
 
 
 
 
 
 
 
    .picBox {
        margin: 0 20rpx;
        background-color: white;
 
        image {
            border-radius: 8rpx;
            width: 100%;
 
        }
    }
 
    .borderTop {
        border-top: 2rpx solid #f2f2f2;
        padding-top: 20rpx;
    }
 
    // 弹出层背景遮罩start
    .dropdown-mask {
        background: rgba(0, 0, 0, 0.5);
    }
 
    .lock-page {
        height: 100vh;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 998;
    }
 
    // 弹出层背景遮罩end
</style>