zhaowei
2 天以前 d78dad29ee493b68dd6ac2e34df08431685c3734
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
<template>
  <div class="outer-container">
    <div class="left-container">
      <a-card title="技术状态">
        <a-spin class="spinning-container" :spinning="spinning1">
          <div id="tech_condition_chart" style="width:100%;height: 100%;"></div>
        </a-spin>
      </a-card>
 
      <a-card title="设备报修故障">
        <a-spin class="spinning-container" :spinning="spinning2">
          <div id="warranty_malfunction_chart" style="width:100%;height: 100%;"></div>
        </a-spin>
      </a-card>
    </div>
 
 
    <div class="right-container">
      <div class="right-top-container">
        <a-card title="三保计划">
          <div class="support-plan-container">
            <div v-for="(item,index) in maintenanceEleList" :key="index" class="support-plan-item">
              <div>{{item.planTime}}</div>
              <div class="plan-value-container">
                <div class="plan-value">{{$data.thirdMaintenanceParams[item.planValueLabel]}}</div>
                <div>台</div>
              </div>
            </div>
          </div>
        </a-card>
        <a-card title="二保计划">
          <div class="support-plan-container">
            <div v-for="(item,index) in maintenanceEleList" :key="index" class="support-plan-item">
              <div>{{item.planTime}}</div>
              <div class="plan-value-container">
                <div class="plan-value">{{$data.secondMaintenanceParams[item.planValueLabel]}}</div>
                <div>台</div>
              </div>
            </div>
          </div>
        </a-card>
      </div>
 
      <a-card title="我的待办" class="right-bottom-container">
        <a slot="extra" href="#" @click="$router.push('/flowable/workflow/FlowTodo')">更多</a>
 
        <todo-list ref="todoList"
                   :defaultCategories="['equipment_transfer','equipment_scrap','spare_part_apply','equipment_seal_up','equipment_unseal','equipment_return','sbdjApproval','eam_repair','equipment_lean_out','second_maintenance','third_maintenance']"
        />
      </a-card>
    </div>
  </div>
</template>
 
<script>
  import TodoList from '../TodoList'
  import signageApi from '@/api/signage'
 
  export default {
    name: 'EamManagerSignage',
    components: { TodoList },
    data() {
      return {
        spinning1: false,
        spinning2: false,
        techConditionChart: '',
        warrantyMalfunctionChart: '',
        thirdMaintenanceParams: {
          thisMonthMaintenancePlanNum: 0,
          thisMonthMaintenanceRealNum: 0,
          nextMonthMaintenancePlanNum: 0,
          maintenanceOverdueNum: 0
        },
        secondMaintenanceParams: {
          thisMonthMaintenancePlanNum: 0,
          thisMonthMaintenanceRealNum: 0,
          nextMonthMaintenancePlanNum: 0,
          maintenanceOverdueNum: 0
        },
        maintenanceEleList: [
          {
            planTime: '本月计划',
            planValueLabel: 'thisMonthMaintenancePlanNum',
            backgroundColor: '#719D8E',
            code: 'bysbzs'
          },
          {
            planTime: '本月完成',
            planValueLabel: 'thisMonthMaintenanceRealNum',
            backgroundColor: '#409EFF',
            code: 'bwc'
          },
          {
            planTime: '下月计划',
            planValueLabel: 'nextMonthMaintenancePlanNum',
            backgroundColor: '#A8985D',
            code: 'xysb'
          },
          {
            planTime: '超期',
            planValueLabel: 'maintenanceOverdueNum',
            backgroundColor: '#E86A6A',
            code: ''
          }
        ]
      }
    },
    mounted() {
      window.addEventListener('resize', this.handleWindowResize)
      this.getChartDataByApi()
      this.$refs.todoList.loadData(1)
    },
    beforeDestroy() {
      window.removeEventListener('resize', this.handleWindowResize)
    },
    methods: {
      /* 调用接口获取图表数据汇总方法 */
      getChartDataByApi() {
        this.getTechConditionDataByApi()
        this.getWarrantyMalfunctionDataByApi()
        this.getThirdMaintenanceConditionByApi()
        this.getSecondMaintenanceConditionByApi()
      },
 
      /* 调用接口获取技术状态 */
      getTechConditionDataByApi() {
        this.techConditionChart = this.$echarts.init(document.getElementById('tech_condition_chart'))
        this.spinning1 = true
        signageApi.getEquipmentTechnologyStatusApi()
          .then(res => {
            if (res.success && res.result) {
              this.techConditionData = [
                {
                  value: res.result.length > 0 ? res.result[0].qualifiedCount : 0,
                  name: '合格'
                },
                {
                  value: res.result.length > 0 ? res.result[0].limitedUseCount : 0,
                  name: '限用'
                },
                {
                  value: res.result.length > 0 ? res.result[0].disabledCount : 0,
                  name: '禁用'
                }
              ]
              this.drawTechConditionChart()
            }
          })
      },
 
      /* 调用接口获取故障报修 */
      getWarrantyMalfunctionDataByApi() {
        this.warrantyMalfunctionChart = this.$echarts.init(document.getElementById('warranty_malfunction_chart'))
        this.spinning2 = true
        signageApi.getReportRepairEquipmentApi()
          .then(res => {
            if (res.success && res.result) {
              this.warrantyMalfunctionData = [
                {
                  value: res.result.length > 0 ? res.result[0].noStopCount : 0,
                  name: '运行'
                },
                {
                  value: res.result.length > 0 ? res.result[0].failurTotalCount : 0,
                  name: '报修'
                },
                {
                  value: res.result.length > 0 ? res.result[0].stopCount : 0,
                  name: '停机'
                }
              ]
              this.drawWarrantyMalfunctionChart()
            }
          })
      },
 
      /* 调用接口获取三保情况 */
      getThirdMaintenanceConditionByApi() {
        signageApi.getThirdMaintenancePlanApi()
          .then(res => {
            if (res.success && res.result) {
              this.thirdMaintenanceParams.thisMonthMaintenancePlanNum = res.result.thisMonthCount
              this.thirdMaintenanceParams.thisMonthMaintenanceRealNum = res.result.thisMonthFinishCount
              this.thirdMaintenanceParams.nextMonthMaintenancePlanNum = res.result.nextMonthCount
              this.thirdMaintenanceParams.maintenanceOverdueNum = res.result.thisMonthOverdueCount
            }
          })
      },
 
      /* 调用接口获取二保情况 */
      getSecondMaintenanceConditionByApi() {
        signageApi.getSecondMaintenancePlanApi()
          .then(res => {
            if (res.success && res.result) {
              this.secondMaintenanceParams.thisMonthMaintenancePlanNum = res.result.thisMonthCount
              this.secondMaintenanceParams.thisMonthMaintenanceRealNum = res.result.thisMonthFinishCount
              this.secondMaintenanceParams.nextMonthMaintenancePlanNum = res.result.nextMonthCount
              this.secondMaintenanceParams.maintenanceOverdueNum = res.result.thisMonthOverdueCount
            }
          })
      },
 
      /* 绘制技术状态饼图 */
      drawTechConditionChart() {
        const option = {
          tooltip: {
            trigger: 'item',
            formatter: function(params) {
              return '<span style="font-weight:bolder;">' + params.name + '</span><br/>' +
                '<span style="display:inline-block; width:10px; height:10px; border-radius:100px; margin-right:5px; background:' + params.color + '"></span>' + `${params.value}(${params.percent}%)`
            }
          },
          legend: {
            bottom: 0,
            right: 'center',
            itemWidth: 14,
            itemHeight: 14,
            itemGap: 15,
            textStyle: {
              color: 'inherit',
              fontSize: 14
            },
            data: ['合格', '限用', '禁用']
          },
          grid: {
            containLabel: true
          },
          series: [
            {
              type: 'pie',
              radius: ['40%', '55%'],
              center: ['50%', '40%'],
              color: [
                '#4DC794',
                '#3DB1F6',
                '#F76E6D'
              ],
              label: {
                position: 'outside',
                show: true,
                color: 'inherit',
                fontSize: 16,
                formatter: function(params) {
                  if (params.name !== '') {
                    return `${params.name}:${params.value}`
                  }
                }
              },
              labelLine: {
                show: true,
                length2: 15,
                length: 15,
                lineStyle: {
                  color: 'rgba(0,0,0,.45)'
                }
              },
              data: this.techConditionData
            }
          ]
        }
        this.techConditionChart.setOption(option, true)
        this.spinning1 = false
      },
 
      /* 绘制设备报修故障饼图 */
      drawWarrantyMalfunctionChart() {
        const option = {
          tooltip: {
            trigger: 'item',
            formatter: function(params) {
              return '<span style="font-weight:bolder;">' + params.name + '</span><br/>' +
                '<span style="display:inline-block; width:10px; height:10px; border-radius:100px; margin-right:5px; background:' + params.color + '"></span>' + `${params.value}(${params.percent}%)`
            }
          },
          legend: {
            bottom: 0,
            right: 'center',
            itemWidth: 14,
            itemHeight: 14,
            itemGap: 15,
            textStyle: {
              color: 'inherit',
              fontSize: 14
            },
            data: ['运行', '报修', '停机']
          },
          grid: {
            containLabel: true
          },
          series: {
            type: 'pie',
            radius: ['40%', '55%'],
            center: ['50%', '40%'],
            color: [
              '#4DC794',
              '#3DB1F6',
              '#F76E6D'
            ],
            label: {
              position: 'outside',
              show: true,
              color: 'inherit',
              fontSize: 16,
              formatter: function(params) {
                if (params.name !== '') {
                  return `${params.name}:${params.value}`
                }
              }
            },
            labelLine: {
              show: true,
              length2: 15,
              length: 15
            },
            data: this.warrantyMalfunctionData
          }
        }
        this.warrantyMalfunctionChart.setOption(option, true)
        this.spinning2 = false
      },
 
      /**
       * 窗口尺寸变化时触发
       * 调整图表尺寸以适应分辨率
       */
      handleWindowResize() {
        if (this.techConditionChart) this.techConditionChart.resize()
        if (this.warrantyMalfunctionChart) this.warrantyMalfunctionChart.resize()
      }
    }
  }
</script>
 
<style scoped lang="less">
  @container-margin: 10px;
 
  .outer-container {
    display: flex;
    justify-content: space-between;
    height: 100vh;
 
    .left-container {
      width: 30%;
      height: 100%;
      margin-right: @container-margin;
 
      & > div:first-child {
        margin-bottom: @container-margin;
      }
 
      /deep/ .ant-card {
        height: calc(100% / 2 - (@container-margin / 2));
        display: flex;
        flex-direction: column;
 
        .ant-card-body {
          flex: 1;
        }
      }
    }
 
    .right-container {
      width: 70%;
      height: 100%;
      display: flex;
      flex-direction: column;
 
      .right-top-container {
        display: flex;
        margin-bottom: @container-margin;
 
        /deep/ .ant-card {
          flex: 1;
 
          &:first-child {
            margin-right: @container-margin;
          }
          .ant-card-body {
            padding: 0;
          }
        }
 
        .support-plan-container {
          display: flex;
          justify-content: space-around;
          flex-wrap: wrap;
 
          .support-plan-item {
            border-radius: 3px;
            width: calc(100% / 2);
            padding: 25px;
            text-align: center;
            border-left: 1px solid #e8e8e8;
            border-bottom: 1px solid #e8e8e8;
 
            .plan-value-container {
              margin-top: 5px;
              display: flex;
              justify-content: center;
              align-items: center;
 
              .plan-value {
                margin-right: 10px;
                font-size: 30px;
              }
            }
          }
        }
      }
 
      .right-bottom-container {
        flex: 1;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        & ::-webkit-scrollbar {
          width: 6px; /* 滚动条宽度 */
        }
 
        /deep/ .ant-card-body {
          padding: 6px 24px 12px;
          flex: 1;
          overflow: auto;
        }
      }
    }
  }
 
  .spinning-container {
    height: 100%;
    /deep/ .ant-spin-container {
      height: 100%;
    }
  }
</style>