xiangpei
2024-05-06 7e89486b56e01f4743ff8da8ed0395bd28595824
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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
<template>
  <div class="app-container">
<!--    <el-row :gutter="10" class="mb8">-->
<!--      <el-col :span="1.5">-->
<!--        <el-button-->
<!--          type="primary"-->
<!--          plain-->
<!--          icon="el-icon-plus"-->
<!--          size="mini"-->
<!--          @click="handleAdd"-->
<!--          v-hasPermi="['ycl:threshold:add']"-->
<!--        >新增-->
<!--        </el-button>-->
<!--      </el-col>-->
<!--    </el-row>-->
 
    <el-table v-loading="loading" :data="thresholdList" @selection-change="handleSelectionChange">
      <el-table-column type="selection" width="55" align="center"/>
      <el-table-column label="设备类型" align="center" prop="monitorType">
        <template slot-scope="scope">
          <span v-show="scope.row['monitorType'] === 'face'">人脸</span>
          <span v-show="scope.row['monitorType'] === 'car'">车辆</span>
          <span v-show="scope.row['monitorType'] === 'video'">视频</span>
        </template>
      </el-table-column>
      <el-table-column label="工单阈值" align="center">
        <template slot-scope="scope">
          <template v-if="scope.row.monitorType === 'face'">
            <div class="table-row">
              <div class="table-row-item">抓拍量</div>
              <div class="table-row-item">{{ scope.row.captureNum }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">及时率</div>
              <div class="table-row-item">{{ scope.row.timelyRate }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">延迟量</div>
              <div class="table-row-item">{{ scope.row.delayAmount }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">设备活跃率</div>
              <div class="table-row-item">{{ scope.row.deviceActiveRate }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">抓拍及时率</div>
              <div class="table-row-item">{{ scope.row.timelyCapture }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">时钟准确率</div>
              <div class="table-row-item">{{ scope.row.timeAccuracy }}</div>
            </div>
          </template>
          <template v-else-if="scope.row.monitorType === 'car'">
            <div class="table-row">
              <div class="table-row-item">过车数据量</div>
              <div class="table-row-item">{{ scope.row.passCarNum }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">过车缺失率</div>
              <div class="table-row-item">{{ scope.row.passCarMissRate }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">有效过车数据量</div>
              <div class="table-row-item">{{ scope.row.passCarEffectiveNum }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">设备活跃率</div>
              <div class="table-row-item">{{ scope.row.deviceActiveRate }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">抓拍及时率</div>
              <div class="table-row-item">{{ scope.row.timelyCapture }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">时钟准确率</div>
              <div class="table-row-item">{{ scope.row.timeAccuracy }}</div>
            </div>
          </template>
          <template v-else-if="scope.row.monitorType === 'video'">
            <div class="table-row" style="display: flex;flex-direction: row">
              <div class="table-row-item">图像质量</div>
              <div class="table-row-item">{{ scope.row.imageQuality }}</div>
            </div>
            <div class="table-row" style="display: flex;flex-direction: row">
              <div class="table-row-item">视频质量</div>
              <div class="table-row-item">{{ scope.row.videoQuality }}</div>
            </div>
            <div class="table-row" style="display: flex;flex-direction: row">
              <div class="table-row-item">标注准确率</div>
              <div class="table-row-item">{{ scope.row.annotationAccuracy }}</div>
            </div>
          </template>
        </template>
      </el-table-column>
      <el-table-column label="下发阈值" align="center">
        <template slot-scope="scope">
          <template v-if="scope.row.monitorType === 'face'">
            <div class="table-row">
              <div class="table-row-item">抓拍量</div>
              <div class="table-row-item">{{ scope.row.captureNumAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">及时率</div>
              <div class="table-row-item">{{ scope.row.timelyRateAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">延迟量</div>
              <div class="table-row-item">{{ scope.row.delayAmountAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">设备活跃率</div>
              <div class="table-row-item">{{ scope.row.deviceActiveRateAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">抓拍及时率</div>
              <div class="table-row-item">{{ scope.row.timelyCaptureAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">时钟准确率</div>
              <div class="table-row-item">{{ scope.row.timeAccuracyAuto }}</div>
            </div>
          </template>
          <template v-else-if="scope.row.monitorType === 'car'">
            <div class="table-row">
              <div class="table-row-item">过车数据量</div>
              <div class="table-row-item">{{ scope.row.passCarNumAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">过车缺失率</div>
              <div class="table-row-item">{{ scope.row.passCarMissRateAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">有效过车数据量</div>
              <div class="table-row-item">{{ scope.row.passCarEffectiveNumAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">设备活跃率</div>
              <div class="table-row-item">{{ scope.row.deviceActiveRateAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">抓拍及时率</div>
              <div class="table-row-item">{{ scope.row.timelyCaptureAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">时钟准确率</div>
              <div class="table-row-item">{{ scope.row.timeAccuracyAuto }}</div>
            </div>
          </template>
          <template v-else-if="scope.row.monitorType === 'video'">
            <div class="table-row">
              <div class="table-row-item">图像质量</div>
              <div class="table-row-item">{{ scope.row.imageQualityAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">视频质量</div>
              <div class="table-row-item">{{ scope.row.videoQualityAuto }}</div>
            </div>
            <div class="table-row">
              <div class="table-row-item">标注准确率</div>
              <div class="table-row-item">{{ scope.row.annotationAccuracyAuto }}</div>
            </div>
          </template>
        </template>
      </el-table-column>
      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
        <template slot-scope="scope">
          <el-button
            size="mini"
            type="text"
            icon="el-icon-edit"
            v-hasPermi="['ycl:threshold:edit']"
            @click="updateWho(scope.row)"
          >修改
          </el-button>
<!--          <el-button-->
<!--            size="mini"-->
<!--            type="text"-->
<!--            icon="el-icon-delete"-->
<!--            @click="handleDelete(scope.row)"-->
<!--            v-hasPermi="['ycl:threshold:remove']"-->
<!--          >删除-->
<!--          </el-button>-->
        </template>
      </el-table-column>
    </el-table>
 
    <pagination
      v-show="total>0"
      :total="total"
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />
 
    <!-- 人脸阈值 -->
    <el-dialog title="修改人脸工单阈值" :visible.sync="faceOpen" width="700px" append-to-body>
      <el-form ref="faceForm" :model="faceForm" label-width="150px" :inline="true">
        <el-form-item class="fixedWidth" label="抓拍量" prop="captureNum">
          <el-input clearable size="small" v-model="faceForm.captureNum" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.captureNumAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="过车缺失率" prop="timelyRate">
          <el-input clearable size="small" v-model="faceForm.timelyRate" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.timelyRateAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="延迟量" prop="delayAmount">
          <el-input clearable size="small" v-model="faceForm.delayAmount" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.delayAmountAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="设备活跃率" prop="deviceActiveRate">
          <el-input clearable size="small" v-model="faceForm.deviceActiveRate" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.deviceActiveRateAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="抓拍及时率" prop="timelyCapture">
          <el-input clearable size="small" v-model="faceForm.timelyCapture" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.timelyCaptureAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="时钟准确率" prop="deviceActiveRate">
          <el-input clearable size="small" v-model="faceForm.timeAccuracy" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="faceForm.timeAccuracyAuto" placeholder="下发阈值"/>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="editFace">确 定</el-button>
        <el-button @click="cancelFace">取 消</el-button>
      </div>
    </el-dialog>
 
    <!-- 车辆阈值 -->
    <el-dialog title="修改车辆工单阈值" :visible.sync="carOpen" width="700px" append-to-body>
      <el-form ref="faceForm" :model="faceForm" label-width="150px" :inline="true">
        <el-form-item class="fixedWidth" label="过车数据量" prop="passCarNum">
          <el-input clearable size="small" v-model="carForm.passCarNum" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.passCarNumAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="过车缺失率" prop="passCarMissRate">
          <el-input clearable size="small" v-model="carForm.passCarMissRate" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.passCarMissRateAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="有效过车数据量" prop="passCarEffectiveNum">
          <el-input clearable size="small" v-model="carForm.passCarEffectiveNum" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.passCarEffectiveNumAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="设备活跃率" prop="deviceActiveRate">
          <el-input clearable size="small" v-model="carForm.deviceActiveRate" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.deviceActiveRateAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="抓拍及时率" prop="timelyCapture">
          <el-input clearable size="small" v-model="carForm.timelyCapture" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.timelyCaptureAuto" placeholder="下发阈值"/>
        </el-form-item>
        <el-form-item class="fixedWidth" label="时钟准确率" prop="timeAccuracy">
          <el-input clearable size="small" v-model="carForm.timeAccuracy" placeholder="工单阈值"/>
          <el-input clearable size="small" v-model="carForm.timeAccuracyAuto" placeholder="下发阈值"/>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="editCar">确 定</el-button>
        <el-button @click="cancelCar">取 消</el-button>
      </div>
    </el-dialog>
 
    <!-- 视频阈值 -->
    <el-dialog title="修改视频工单阈值" :visible.sync="videoOpen" width="700px" append-to-body>
      <el-form ref="videoForm" :model="videoForm" label-width="100px" :inline="true">
        <el-form-item class="fixedWidth" label="图像质量" prop="imageQuality" label-width="100px">
          <el-select v-model="videoForm.imageQuality" placeholder="工单阈值" @change="handleModeNameChange">
            <el-option :key="dict.value" :label="dict.value" v-for="dict in dict.type.image_qualify"/>
          </el-select>
          <el-select v-model="videoForm.imageQualityAuto" placeholder="下发阈值" @change="handleModeNameChange">
            <el-option :key="dict.value" :label="dict.value" v-for="dict in dict.type.image_qualify"/>
          </el-select>
        </el-form-item>
        <el-form-item class="fixedWidth" label="视频质量" prop="videoQuality" label-width="100px">
          <el-select v-model="videoForm.videoQuality" placeholder="工单阈值" @change="handleModeNameChange">
            <el-option :key="dict.value" :label="dict.value" v-for="dict in dict.type.video_qualify"/>
          </el-select>
          <el-select v-model="videoForm.videoQualityAuto" placeholder="下发阈值" @change="handleModeNameChange">
            <el-option :key="dict.value" :label="dict.value" v-for="dict in dict.type.video_qualify"/>
          </el-select>
        </el-form-item>
        <el-form-item class="fixedWidth" label="标注准确率" prop="annotationAccuracy" label-width="100px">
          <el-input v-model="videoForm.annotationAccuracy" type="number" size="small" placeholder="工单阈值"></el-input>
          <el-input v-model="videoForm.annotationAccuracy" type="number" size="small" placeholder="下发阈值"></el-input>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="editVideo">确 定</el-button>
        <el-button @click="cancelVideo">取 消</el-button>
      </div>
    </el-dialog>
 
  </div>
</template>
 
<script>
import { listThreshold, getThreshold, editVideo } from '@/api/platform/threshold'
import { editCar, editFace, getCar, getFace, getVideo } from '../../../../api/platform/threshold'
 
export default {
  dicts: ['image_qualify', 'video_qualify'],
  name: 'Threshold',
  data() {
    return {
      indicators: [],
      // 遮罩层
      loading: true,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 运维阈值表格数据
      thresholdList: [],
      // 弹出层标题
      title: '',
      // 是否显示弹出层
      videoOpen: false,
      faceOpen: false,
      carOpen: false,
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        monitorType: null
      },
      // 表单参数
      videoForm: {},
      carForm: {},
      faceForm: {},
      // 表单校验
      faceRules: {
        monitorType: [
          { required: true, message: '设备类型不能为空', trigger: 'change' }
        ],
        captureNum: [
          { required: true, message: '请填写抓拍量', trigger: 'blur' }
        ],
        timelyRate: [
          { required: true, message: '请填写及时率', trigger: 'blur' }
        ],
        delayAmount: [
          { required: true, message: '请填写延迟量', trigger: 'blur' }
        ],
        deviceActiveRate: [
          { required: true, message: '请填写设备活跃率', trigger: 'blur' }
        ],
        timeAccuracy: [
          { required: true, message: '请填写时钟准确率', trigger: 'blur' }
        ],
        timelyCapture: [
          { required: true, message: '请填写抓拍及时率', trigger: 'blur' }
        ],
      },
      carRules: {
        monitorType: [
          { required: true, message: '设备类型不能为空', trigger: 'change' }
        ],
        passCarNum: [
          { required: true, message: '请填写过车数据量', trigger: 'blur' }
        ],
        passCarMissRate: [
          { required: true, message: '请填写过车缺失率', trigger: 'blur' }
        ],
        passCarEffectiveNum: [
          { required: true, message: '请填写有效过车数据量', trigger: 'blur' }
        ],
        timelyCapture: [
          { required: true, message: '请填写抓拍及时率', trigger: 'blur' }
        ],
        deviceActiveRate: [
          { required: true, message: '请填写设备活跃率', trigger: 'blur' }
        ],
        timeAccuracy: [
          { required: true, message: '请填写时钟准确率', trigger: 'blur' }
        ],
      },
      rules: {
        monitorType: [
          { required: true, message: '设备类型:1人脸 2车辆 3视频不能为空', trigger: 'change' }
        ],
        videoQuality: [
          { required: true, message: '请选择视频质量阈值', trigger: 'change' }
        ],
        imageQuality: [
          { required: true, message: '请选择图像质量阈值', trigger: 'change' }
        ],
        annotationAccuracy: [
          { required: true, message: '请填写标注准确率阈值', trigger: 'blur' }
        ],
      }
    }
  },
  created() {
    this.getList()
  },
  methods: {
    showContent(row) {
      if(row.monitorType === "car") {
 
      }
    },
    editVideo() {
      // this.$refs['videoForm'].validate(validate => {
      //   if (validate) {
          editVideo(this.videoForm).then(res => {
            if (res.code === 200) {
              this.$message.success("修改成功")
              this.videoOpen = false
              this.getList();
            } else {
              this.$message.success("修改失败")
            }
        //   })
        // }
      })
    },
    editFace() {
      // this.$refs['faceForm'].validate(validate => {
      //   if (validate) {
      editFace(this.videoForm).then(res => {
        if (res.code === 200) {
          this.$message.success("修改成功")
          this.faceOpen = false
          this.getList();
        } else {
          this.$message.success("修改失败")
        }
        //   })
        // }
      })
    },
    editCar() {
      // this.$refs['carForm'].validate(validate => {
      //   if (validate) {
      editCar(this.carForm).then(res => {
        if (res.code === 200) {
          this.$message.success("修改成功")
          this.carOpen = false
          this.getList();
        } else {
          this.$message.success("修改失败")
        }
        //   })
        // }
      })
    },
    /** 查询运维阈值列表 */
    getList() {
      this.loading = true
      listThreshold(this.queryParams).then(response => {
        this.thresholdList = response.rows
        this.total = response.total
        this.loading = false
      })
    },
    // 取消按钮
    cancelFace() {
      this.faceOpen = false
      this.resetFace()
    },
    cancelCar() {
      this.carOpen = false
      this.resetCar()
    },
    cancelVideo() {
      this.videoOpen = false
      this.resetVideo()
    },
    // 表单重置
    reset() {
      this.form = {
        id: null,
        monitorType: null,
        timeout: null,
        indicator: null,
        createTime: null,
        updateTime: null,
        deleted: null
      }
      this.resetForm('form')
    },
    resetVideo() {
      this.videoForm = {
        id: null,
        monitorType: "",
        imageQuality: "",
        imageQualityAuto: "",
        videoQuality: "",
        videoQualityAuto: "",
        annotationAccuracy: null,
        annotationAccuracyAuto: null,
      }
      this.resetForm('videoForm')
    },
    resetFace() {
      this.faceForm = {
        id: null,
        monitorType: "",
        imageQuality: "",
        imageQualityAuto: "",
        videoQuality: "",
        videoQualityAuto: "",
        annotationAccuracy: null,
        annotationAccuracyAuto: null,
      }
      this.resetForm('faceForm')
    },
    resetCar() {
      this.carForm = {
        id: null,
        monitorType: "",
        imageQuality: "",
        imageQualityAuto: "",
        videoQuality: "",
        videoQualityAuto: "",
        annotationAccuracy: null,
        annotationAccuracyAuto: null,
      }
      this.resetForm('carForm')
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1
      this.getList()
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.resetForm('queryForm')
      this.handleQuery()
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map(item => item.id)
      this.single = selection.length !== 1
      this.multiple = !selection.length
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset()
      this.open = true
      this.title = '添加运维阈值'
      this.handleModeNameChange()
    },
    /** 修改按钮操作 */
    updateWho(row) {
      if (row.monitorType === 'face') {
        getFace(row.id).then(response => {
          this.faceForm = response.data
          this.faceOpen = true;
        })
      } else if (row.monitorType === 'car') {
        getCar(row.id).then(response => {
          this.carForm = response.data
          this.carOpen = true;
        })
      } else {
        getVideo(row.id).then(response => {
          this.videoForm = response.data
          this.videoOpen = true;
        })
      }
    },
    handleUpdate(row) {
      this.reset()
      const id = row.id || this.ids
      getThreshold(id).then(response => {
        this.form = response.data
        this.indicators = JSON.parse(this.form.indicator)
        this.videoOpen = true
        this.title = '修改运维阈值'
      })
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs['form'].validate(valid => {
        if (valid) {
          // 将indicators转为json赋值到form
          this.form.indicator = JSON.stringify(this.indicators)
          if (this.form.id != null) {
            updateThreshold(this.form).then(response => {
              this.$modal.msgSuccess('修改成功')
              this.open = false
              this.getList()
            })
          } else {
            addThreshold(this.form).then(response => {
              this.$modal.msgSuccess('新增成功')
              this.open = false
              this.getList()
            })
          }
        }
      })
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const ids = row.id || this.ids
      this.$modal.confirm('是否确认删除运维阈值编号为"' + ids + '"的数据项?').then(function() {
        return delThreshold(ids)
      }).then(() => {
        this.getList()
        this.$modal.msgSuccess('删除成功')
      }).catch(() => {
      })
    },
    /** 切换不同指标 */
    handleModeNameChange() {
      if (this.form.monitorType === '1' || this.form.monitorType === null) {
        this.indicators = [
          {
            label: '抓拍量',
            value: null
          },
          {
            label: '及时率',
            value: null
          },
          {
            label: '延迟量',
            value: null
          },
          {
            label: '抽检量',
            value: null
          },
          {
            label: '设备活跃率',
            value: null
          },
          {
            label: '抓拍及时率',
            value: null
          },
          {
            label: '时钟准确率',
            value: null
          },
          {
            label: '时钟不准确率',
            value: null
          }
        ]
      } else if (this.form.monitorType === 'car') {
        this.indicators = [
          {
            label: '过车数据量',
            value: null
          },
          {
            label: '过车缺失率',
            value: null
          },
          {
            label: '有效过车数据量',
            value: null
          },
          {
            label: '抽检量',
            value: null
          },
          {
            label: '设备活跃率',
            value: null
          },
          {
            label: '抓拍及时率',
            value: null
          },
          {
            label: '时钟准确率',
            value: null
          },
          {
            label: '时钟不准确率',
            value: null
          }
        ]
      } else if (this.form.monitorType === 'video') {
        this.indicators = [
          {
            label: '录像质量',
            value: null
          },
          {
            label: '标注准确率',
            value: null
          },
          {
            label: '图像质量',
            value: null
          },
        ]
      }
    }
  }
}
</script>
<style>
.el-input-half-width {
  width: calc(50% - 6px); /* 减去一些间隔 */
}
.table-row {
  display: flex;
  flex-direction: row;
}
.table-row-item {
  width: 120px;
  text-align: center;
}
.fixedWidth {
  width: 200px;
}
.threshold {
  display: flex;
  flex-direction: row;
}
</style>