fuliqi
2024-09-29 dd9431276d5e48722aab3fe0280fce9f0ac8fbe2
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
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
<template>
  <div class="app-container">
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
      <el-form-item label="关键词" prop="keyword">
        <el-input
          v-model="queryParams.keyword"
          placeholder="工单号/点位名称搜索"
          clearable
          @clear="handleQuery"
          @keyup.enter.native="handleQuery"
        />
      </el-form-item>
      <el-form-item label="故障类型" prop="errorTypeList">
        <el-select v-model="queryParams.errorTypeList" multiple @change="handleQuery" placeholder="故障类型" clearable @clear="handleQuery">
          <el-option v-for="dict in dict.type.error_type" :value="dict.value" :key="dict.value" :label="dict.label" />
        </el-select>
      </el-form-item>
      <el-form-item label="工单状态" prop="status">
        <el-select v-model="queryParams.status" placeholder="工单状态" @change="handleQuery">
          <el-option label="全部" value=""></el-option>
          <el-option label="待处理" value="DISTRIBUTED"></el-option>
          <el-option label="待审核" value="YW_HANDLE"></el-option>
          <el-option label="已完成" value="AUDITING_SUCCESS"></el-option>
          <el-option label="审核未通过" value="AUDITING_FAIL"></el-option>
        </el-select>
      </el-form-item>
      <el-form-item label="时间范围" prop="timeRange">
        <el-date-picker
          v-model="queryParams.timeRange"
          type="daterange"
          range-separator="至"
          value-format="yyyy-MM-dd"
          start-placeholder="开始日期"
          end-placeholder="结束日期">
        </el-date-picker>
      </el-form-item>
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" size="small" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" size="small" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>
 
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button
          type="primary"
          plain
          size="mini"
          @click="batchAuditingVisible = true; batchAuditingWorkOrder = {}"
          v-hasPermi="['work:order:audit']"
        >批量审核
        </el-button>
        <el-button
          type="primary"
          plain
          size="mini"
          @click="handleExport"
          v-hasPermi="['work:order:audit']"
        >导出
        </el-button>
      </el-col>
    </el-row>
 
    <el-row :gutter="20" v-loading="loading">
      <el-col :xl="6" :lg="8" :md="12" :sm="24" v-for="item in workOrderList" :key="item.id">
        <div class="my-col">
          <div style="padding-left: 10px; padding-top: 8px">
            <el-row>
              <el-tag style="margin-right: 5px;height:24px;overflow:auto" effect="dark" v-for="(error, index) in item.errorTypeList" :key="index" size="small" type="warning">{{ error }}</el-tag>
            </el-row>
          </div>
          <svg v-if="item.status === 'DISTRIBUTED'" t="1721617809410" class="icon work-order-status" width="72" height="72" viewBox="0 0 1669 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6020"><path d="M429.450929 719.145278L62.111562 621.044163c-18.20892-5.253429-31.164411-25.844201-25.888722-44.030861l20.613032-74.883628c-12.91097 2.626715-25.866461 2.626715-38.799691 2.626715l-15.582206 61.972658c-10.306516 38.755171 12.955491 77.532603 49.128468 87.816858l305.277668 82.763772c20.835635-2.604454 51.955525-7.857884 72.568557-18.164399zM525.281493 744.989479c-15.582206 5.253429-31.164411 10.306516-44.075381 7.679801-10.306516-2.626715-18.20892-12.91097-20.635293-25.844201l-25.866461-7.679801-23.262007 31.09763 367.56197 98.123375c12.91097-7.679801 28.493176-18.18666 44.075381-25.844201l-297.798209-77.532603zM62.111562 486.569729L175.928444 62.822778c5.253429-18.18666 25.866461-31.09763 44.075381-25.844201L1389.715478 349.691183c-7.679801-12.91097-7.679801-31.07537-7.679801-38.755171L274.16312 13.761091c7.702062 10.284256 18.20892 20.590772 28.515436 28.470916-20.613032-5.253429-57.008612-20.813375-80.248359-41.404147-36.195238-5.231169-72.390475 15.359603-80.270619 51.688402L28.342696 473.658759c10.306516 5.253429 20.813375 7.679801 33.768866 12.91097zM1467.1813 982.818457c-7.679801 5.253429-18.20892 7.679801-28.493175 5.253429l-444.983272-119.114832c-41.448667-7.679801-106.13708-15.559945-173.474468-10.306516l610.755678 162.722747c5.253429 2.626715 12.933231 2.626715 18.18666 2.626715 2.448632-10.284256 10.328776-23.217486 18.008577-41.181543zM1555.109461 706.234307s10.328776 7.657541 25.888721 15.537685l69.941843-266.07729c10.328776-38.777432-12.91097-77.532603-49.128468-87.816859l-209.647446-56.941831c23.262007 12.91097 69.964103 36.128457 121.719286 41.404146-12.933231 5.231169-36.195238 10.284256-57.008613 12.910971l134.630257 36.128456c18.20892 5.253429 31.142151 25.821941 25.888721 44.008601l-132.003541 493.622013c5.231169 20.590772 7.657541 46.434973 2.604454 69.852801 10.306516-10.306516 20.635292-23.217486 25.888722-38.777431l56.986352-211.962517c-18.364742-10.506859-15.738028-51.888745-15.738028-51.888745z" fill="#d81e06" p-id="6021"></path><path d="M359.08614 281.864068l9.505146-35.126743 80.671304 21.815088 11.931518-44.030861 39.623322 10.707201-11.931517 44.008601 85.101103 22.816801-9.505146 35.126743-85.101103-22.816801-11.130146 40.981201 102.708995 27.669545-9.505146 35.126743-241.991652-65.423003 9.10446-33.702085a328.628716 328.628716 0 0 1-41.248325 35.928115l-49.729496 184.537834-36.595923-9.705488 37.619897-139.104575c-15.18152 9.505145-30.140438 18.587345-45.099355 27.068517 0-4.229456-0.222603-11.130147-0.801371-20.590772-1.224316-10.707201-1.825344-18.787688-1.424659-24.041117 41.626749-22.193513 79.847674-51.265456 114.640513-86.815145l26.667832 29.294546-2.22603 2.604455 75.217533 20.190086 20.613032 27.869888 2.448632-21.592485 11.107887-40.981201-80.671305-21.815088z m-125.748399 17.964057a443.35827 443.35827 0 0 0-6.255142-40.95894 420.808592 420.808592 0 0 0 105.513792-70.47609l26.289407 30.674685c-41.626749 33.724345-83.476101 60.570259-125.548057 80.760345z m69.7415 125.570317l9.10446-33.702085 146.584034 39.556542 7.056514-26.445229 39.623322 10.684941-7.056513 26.46749 51.332238 13.734601-9.0822 33.702084-51.354498-13.71234-48.126755 20.590771 39.42298 11.308229-10.306516 38.354486c-7.479459 31.498316-28.493176 43.18497-62.863069 34.926401-17.585632-4.652401-35.59421-9.705488-54.181555-14.535971 0.601028-6.0548 1.402399-15.359603 2.626715-27.469203 0.400685-5.231169 0.400685-9.282542 0.200342-12.510285 13.356176 4.652401 28.493176 9.282542 45.077095 13.734601 19.010291 7.256856 29.917835 1.803084 32.744892-16.361316l15.782548-58.544572-146.584034-39.779145z m45.099355 95.296317a773.83459 773.83459 0 0 1-15.582205-29.272286 1399.393364 1399.393364 0 0 0-18.787688-34.926401l32.344207-14.936657c0.601028 1.202056 1.825344 3.0274 3.227742 5.654115 13.356176 20.390429 24.864748 39.779145 34.570236 57.943544l-35.772292 15.537685zM953.858928 718.343907c-54.982925-13.734601-96.609675-26.645572-124.924769-38.354486-47.102781-15.760288-81.87336-42.005174-104.534339-78.356234-17.585632 10.907544-49.929839 25.866461-97.03262 44.631889-1.825344-4.630141-4.452059-10.684941-7.679801-17.763714-3.851031-9.482885-6.455485-16.361316-8.503433-21.1918 37.820239-11.708914 70.164446-26.645572 97.054881-44.631889-2.448632-7.457198 30.31852-29.873314 28.493176-37.731197-1.402399-6.277403-37.397293 2.003426-38.198664-4.251717a277.229698 277.229698 0 0 1-1.825344-55.316829c-2.827057 2.426372-7.078773 6.455485-12.732888 12.309942-13.356176 14.335629-23.863035 24.441802-31.943522 30.696945a583.019352 583.019352 0 0 0-4.652401-46.835658c43.674696-41.604489 81.272332-93.270631 112.614826-155.065206l37.998321 16.561659c-3.628428 5.253429-8.280829 12.91097-14.157547 22.816801a1843.775607 1843.775607 0 0 1-17.785974 31.297973l93.804877 25.220912-9.505145 35.149004c-25.265433 62.373343-56.607927 108.808316-94.205563 139.483 16.583919 31.698658 45.099355 54.53772 85.323706 68.450404 41.626749 16.561659 86.325419 29.472629 134.029228 39.178117-6.878431 10.083913-14.157547 21.1918-21.637005 33.702084z m-142.911086-291.320463l-67.537731-18.1644a50.75347 50.75347 0 0 1-9.505145 11.508572c-5.053087 45.811684-3.0274 84.989801 5.876717 117.690173 27.892148-24.842488 51.55484-61.772315 71.166159-111.034345z m159.294662 143.534373c-5.053087-8.681515-12.933231-22.193513-23.440089-40.95894-10.729462-18.587345-19.010291-32.321946-25.087351-41.203804l-41.426407 153.640547-39.623323-10.684941 15.960631-58.767175 40.847639 5.854457-31.142151-42.606202 50.130181-185.539548 39.623323 10.707201-28.092491 103.955572 14.958918-8.458912a2097.89912 2097.89912 0 0 1 64.488071 92.669603l-37.174691 21.392142zM1135.814568 470.609099l9.905831-36.506882 114.41791 30.875027-9.883571 36.551403-38.220924-10.306516-23.239747 86.41446 36.595923 9.88357-9.505145 35.126744-36.595923-9.883571-24.041117 89.219257 40.424693 1.424659a534.024446 534.024446 0 0 0-8.904117 38.354486c-5.253429-0.400685-13.356176-1.001713-24.664406-2.003426-39.623323-4.452059-71.366502-7.279116-95.229536-8.503432l4.051373-38.154144 45.900726 4.452059 16.984604-62.774028 43.051408-13.957205-34.369893-18.364742-36.595923-9.88357 9.505145-35.126744 36.595923 9.883571 23.239747-86.41446-39.40072-10.284256z m70.787734 238.852951l8.681515-32.299686 87.92816 23.595911 9.905831-36.506882-83.476102-22.416115 49.106208-181.510435 203.792989 54.916144-43.051408 158.693634-26.890435 17.140426-62.885329-16.940083-9.905831 36.529142 87.92816 23.618171-8.681515 32.121604-87.92816-23.640432-10.907544 41.404147 101.061734 27.246599-8.280829 30.674685-244.818711-66.001771 8.28083-30.696945 106.938451 28.871601 11.130147-40.95894-87.928161-23.840775z m79.847674-132.226145l-11.530832 42.3836 46.902439 12.710627 11.508571-42.383599-46.880178-12.732888z m20.012004-74.705545l-11.931517 44.0086 46.902438 12.710628 11.931518-44.008601-46.902439-12.710627z m63.464097 97.099401l-11.508572 42.405859 46.902439 12.710628 11.508572-42.383599-46.902439-12.732888z m67.137046-61.972658l-46.902439-12.732888-11.931517 44.030861 46.902439 12.710628 11.931517-44.008601z" fill="#d81e06" p-id="6022"></path></svg>
          <svg v-else-if="item.status === 'YW_HANDLE'" t="1721620267234" class="icon work-order-status" width="68" height="64" viewBox="0 0 1584 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="15573"><path d="M263.685546 647.190344v4.060662c0 4.060662 3.961622 4.060662 8.101517 0v-4.060662zM425.874342 127.940576c4.060662 8.121325 12.162179 12.162179 24.344166 8.121324-8.121325-4.060662-16.222841-8.121325-24.344166-8.121324z m-3.961621 0c-3.961622-3.961622-8.101517-8.101517-20.283504-3.961622 12.181987 3.961622 16.242649 12.181987 20.283504 3.961622z m-8.121325 567.938099c8.101517 3.961622 12.162179 3.961622 20.283503 8.121325-3.961622-12.181987-12.181987-16.242649-20.283503-8.121325-4.060662-8.121325-16.242649-12.162179-24.344166-12.162179-12.181987 0-24.344166-12.181987-36.506345-3.961621l36.506345 12.162179c8.101517 0 16.222841 0 24.344166 4.060662zM16.222841 582.279171l-3.961622 4.060662c4.060662 4.060662 8.121325 4.060662 16.24265 4.060662 0-4.060662-4.060662-12.162179-12.181987-8.121324z m48.688332 52.748994c-12.162179-8.101517-24.344166-24.344166-44.627669-20.283504-4.060662-4.060662-8.121325-12.162179-16.222842-4.060662a3.961622 3.961622 0 0 1-3.961621 4.060662c4.060662 8.101517 12.162179 4.060662 16.222841 8.101517 12.181987 4.08047 12.181987 24.344166 24.344166 28.404828 4.060662 4.060662 0 12.162179 4.060662 12.162179 8.121325 0 3.961622-8.101517 8.121325-16.222841 3.961622-3.961622 20.263695-3.961622 12.162179-12.162179z m385.386568 68.971835h8.121324c8.101517 3.961622 12.162179 3.961622 20.263696 8.101517-3.961622-8.101517-8.101517-12.162179-16.222841-12.162179-3.961622 0-3.961622-3.961622-8.101517-3.961622s-8.121325-8.121325-8.121325 0c-4.060662 8.121325 0 8.121325 4.060663 8.121325z m60.85051 16.222841c-4.060662-4.060662-12.181987-8.121325-24.344166-8.121324 12.162179 8.121325 16.222841 8.121325 24.344166 8.121324z" p-id="15574" fill="#1296db"></path><path d="M474.641907 144.163417c-8.121325-3.961622-16.222841-8.101517-28.404829-8.101517 8.121325 8.101517 20.283504 8.101517 28.404829 8.101517z m121.681213 36.506345v-8.042093c-8.101517 0-12.162179-8.121325-24.324358-8.121324-3.961622-4.060662-8.121325-4.060662-16.242649-4.060663-3.961622-3.961622-12.162179-8.101517-20.263696 0 8.101517 4.060662 16.222841 4.060662 20.263696 8.121325 4.08047 0 8.121325 3.961622 16.242649 3.961622 12.162179 3.961622 20.283504 8.101517 24.324358 8.101516z m8.121324 0c8.121325 8.121325 16.222841 8.121325 28.404829 3.961621-12.181987-3.961622-16.222841-8.101517-28.404829-3.961621z m-60.85051 547.654596c8.121325 3.961622 16.242649 3.961622 24.344166 3.961622-8.101517-3.961622-16.222841-3.961622-24.344166-8.101517-8.101517 0-16.222841-8.121325-28.38502-4.060662 12.162179 8.101517 20.283504 12.162179 28.38502 8.101516z m-255.524606-73.01269c4.060662 8.101517 12.162179 8.101517 20.283504 4.060663-8.121325-4.060662-12.181987-8.121325-20.283504-4.060663zM640.970597 192.851749c8.101517 0 12.162179 4.060662 16.222842 4.060662-3.961622-8.121325-8.121325-12.181987-16.222842-4.060662z m60.830703 16.222841c-3.961622-8.121325-12.162179-12.162179-20.283504-4.060662 4.060662 4.060662 12.181987 4.060662 20.283504 4.060662zM36.506345 557.954813c20.283504 8.101517 20.283504-8.121325 20.283503-20.283504 3.961622-28.404828 16.222841-56.809656 20.283504-89.255339 4.060662-24.344166 16.242649-52.729186 24.344166-77.073352-4.060662 0-12.181987 4.060662-16.222841 4.060663-20.283504-8.121325-24.344166 3.961622-24.344166 20.283503l-36.506345 133.863201c-8.121325 16.222841-3.961622 28.404828 12.162179 28.404828z m182.551532 77.073352c-8.101517 0-16.222841-8.101517-24.344166-4.060663a43.815537 43.815537 0 0 0 28.404828 12.181987c3.961622 0 8.101517 0 8.101517 3.961622 0-12.162179-8.101517-12.162179-12.162179-12.162179zM109.538842 606.623336c3.961622 8.121325 8.101517 8.121325 16.222842 8.121325-8.121325-8.121325-12.181987-12.162179-16.222842-8.121325z" p-id="15575" fill="#1296db"></path><path d="M81.213247 338.877128c-4.060662 12.181987 0 12.181987 12.181987 16.242649s16.222841-3.961622 20.263695-16.242649C137.923863 241.520272 166.388115 144.163417 190.672857 50.867224c3.961622-12.181987 8.101517-16.222841 20.283503-12.181987 20.263695 8.121325 44.607861 12.181987 64.911173 20.283503q6.061281 6.081089 12.162179 0c24.344166 8.121325 48.668524 16.222841 73.01269 16.222842 8.121325 8.121325 24.344166-8.101517 28.404828 3.961621s12.162179 12.261219 20.283504 12.26122c12.162179 4.060662 20.283504 4.060662 32.445682 8.101516 60.949551 24.363974 121.701021 32.485299 182.551532 52.768803 8.121325 0 8.121325-8.121325 16.242649 0 12.162179 12.162179 40.547199 20.283504 60.830703 16.222841 8.121325-3.961622 12.181987-3.961622 16.242649 3.961622s12.162179 8.101517 20.263696 12.162178c24.344166 8.121325 48.688332 16.222841 73.032497 20.283504 16.222841 4.060662 28.404828 8.121325 44.62767 8.121325 20.283504 16.222841 48.668524 16.222841 73.012689 24.344166l8.121325-32.465491-44.627669-12.162179c-8.121325-3.961622-16.222841-8.121325-24.344166 0-3.961622-3.961622-8.101517-3.961622-12.162179-8.121325-4.060662-8.042092-16.222841-8.042092-24.344166-12.003714-64.911173-20.283504-129.822346-32.465491-194.713711-52.729186-32.465491-8.121325-60.850511-16.242649-89.255339-24.344165-12.162179-4.060662-28.404828-8.121325-36.506345 8.101516 4.060662-16.203033-4.060662-20.342928-16.222841-24.40359-44.627669-12.162179-85.174868-24.324358-129.822346-36.506345-8.121325-4.060662-24.344166-8.101517-32.445682 20.283504 3.961622-24.344166-8.121325-32.445682-24.344166-32.445683-4.060662 0-8.121325-3.961622-8.121325-3.961622-8.101517-4.060662-16.222841-8.121325-24.324358-8.121324h-16.242649c-20.283504-12.261219-40.567007-8.200557-60.850511-16.222841C174.430207-5.922625 170.349737 10.300217 166.388115 22.462396c-12.181987 40.567007-20.283504 81.213247-32.445682 121.701021-20.362736 64.911173-40.626431 125.761684-52.729186 194.713711zM146.045187 618.805323c3.961622 8.121325 12.162179 8.121325 24.344166 8.121325-8.121325-8.121325-16.242649-12.181987-24.344166-8.121325z m576.039616 194.713711c-8.101517-8.121325-20.283504-8.121325-32.445682-8.121324-4.060662-3.961622-12.162179 0-16.222841 0-12.181987-8.101517-28.404828-16.222841-44.62767-8.101517a55.839059 55.839059 0 0 0-16.222841-12.162179c-36.506345-8.121325-73.032498-20.303312-105.47818-28.404828-8.121325-4.060662-16.222841 8.101517-20.283504 4.060662-16.222841-20.283504-40.567007-20.283504-60.85051-12.181987-3.961622-12.162179-20.283504 0-28.404828-8.101516 0-12.181987-3.961622-16.222841-16.222842-16.222841-24.344166-8.121325-48.668524-12.181987-68.952027-16.24265s-44.627669-12.162179-64.911173 4.060663v-12.162179c8.101517-12.181987-4.060662-12.181987-8.121325-16.222842-3.961622 0-8.121325-3.961622-12.162179 0-3.961622 8.101517 8.121325 3.961622 12.162179 8.101517v4.060662c-3.961622 12.162179-20.283504 0-24.344166 12.162179 12.181987 0 20.303312 4.060662 28.404829 4.060663 20.283504 12.181987 48.688332 12.181987 68.971835 20.283503 16.222841 4.060662 32.445682 16.222841 48.668524 12.181987 3.961622 0 8.121325 0 8.121324 3.961622 16.222841 12.181987 44.627669 12.181987 56.789849 0 16.222841 4.060662 28.404828 16.222841 48.688332 16.222841l3.961621 3.961622c12.181987 24.344166 36.526153 20.283504 52.748994 24.344166 3.961622 0 3.961622 0 3.961622-4.060663 3.961622-12.162179 8.101517-12.162179 20.263696-12.162178 8.121325 4.060662 16.242649 4.060662 8.121324 16.222841-3.961622 4.060662 4.060662 8.121325 8.121325 8.121324 8.101517 0 12.162179 3.961622 16.222841 3.961622 12.181987 0 28.404828 20.303312 40.567007-3.961622 12.181987 0 0 24.344166 16.222842 16.222842 8.121325 3.961622 16.222841 0 24.344165 0 4.060662 3.961622 8.121325 12.162179 16.222842 12.162179 28.404828 8.121325 52.729186 16.222841 81.213246 20.283503l8.121325-32.445682c-16.222841 3.961622-32.445682-4.060662-52.748994-4.060663zM925.038688 269.925101v-8.160941c-4.08047 0-4.08047-4.060662-8.121325 0-4.060662-4.060662-8.121325-8.101517-16.222841 0 8.101517 3.961622 16.222841 8.121325 24.344166 8.121324z" p-id="15576" fill="#1296db"></path><path d="M324.536057 103.59641c8.121325 4.060662 16.222841 12.162179 28.404828 4.060662-8.121325-4.060662-20.283504-8.121325-28.404828-4.060662-4.060662-8.101517-16.222841-8.101517-24.344166-8.101517l-24.324358-12.181987c-8.121325 0-16.242649-8.121325-28.404828 0 12.162179 4.139895 20.283504 8.101517 28.404828 8.101517 8.101517 4.060662 16.222841 4.060662 24.324358 8.101516 8.121325 0 12.181987 3.961622 24.344166 3.961622zM162.268028 659.372331c3.961622 3.961622 12.162179 8.101517 12.162179 16.222841-4.08047 4.120087-8.042092 4.120087-12.162179 4.120086-12.162179-20.283504-32.445682-8.121325-48.688331-12.181987-3.961622-8.101517 20.303312-24.324358-3.961622-24.324357-8.121325-4.060662-16.222841-4.060662-20.303312-8.121325-3.961622 0-12.162179-4.060662-16.222841-4.060662 0 4.060662 3.961622 12.181987 8.121325 16.222841 8.101517 0 8.101517 20.283504 20.283503 8.121325h3.961622c3.961622 4.060662 0 12.162179 3.961622 20.283503 16.222841 12.162179 32.445682 24.344166 52.729186 12.162179 16.222841 12.181987 32.445682 12.181987 56.789848-16.222841-12.162179-4.060662-24.344166-4.060662-36.506345-8.121325-3.961622-3.961622-8.121325-8.101517-20.283503-3.961622z m85.174869-576.059425c-24.344166-16.222841-24.344166-16.222841-28.404828 12.181987-8.101517 20.263695-12.162179 40.567007-16.222842 60.830703-8.121325 12.181987-8.121325 28.404828-12.162178 40.586815 0 8.101517-8.121325 12.162179-4.060663 20.283504-3.961622 8.101517-8.121325 16.222841-8.121324 24.324357L166.388115 290.208604c0 8.101517-8.121325 12.181987 0 24.344166 8.101517-8.121325 8.101517-16.242649 8.101517-24.344166 8.121325-16.222841 12.181987-32.465491 12.181987-44.627669 4.060662-8.101517 4.060662-16.222841 8.101516-20.283504 3.961622-8.101517 3.961622-12.162179 3.961622-20.283503 4.060662-12.162179 8.121325-24.344166 12.181987-40.567008l16.222841-60.85051c0-24.344166 3.961622-24.344166 20.283504-20.283504z m-85.174869 231.239864c-8.121325 12.162179-16.222841 24.324358-12.162178 44.627669 8.101517-16.242649 8.101517-28.404828 12.162178-44.627669zM369.163726 115.758589c12.162179 4.08047 16.222841 8.121325 28.385021 12.181987-3.961622-16.222841-12.162179-16.222841-28.385021-12.181987z m-251.562983 348.880223c-8.101517 8.121325-8.101517 16.222841-3.961622 24.344165 3.961622-8.121325 12.181987-16.222841 3.961622-24.344165z m-40.527391 194.733519l-3.961622 3.961621c0 8.121325 8.121325 8.121325 16.222841 8.121325q0-18.243268-12.162179-12.162179z m48.688332-219.057877c-4.060662 3.961622-12.181987 8.101517-4.060663 20.283503 8.121325-3.961622 8.121325-12.181987 4.060663-20.283503z m20.283503-60.850511c-8.121325 8.101517-16.222841 16.222841-8.121324 32.445683 4.060662-16.222841 4.060662-24.344166 8.121324-32.445683z m478.682761 373.204581c8.121325 0 16.242649 4.060662 24.344166 4.060662-4.060662-8.121325-12.162179-8.121325-24.344166-4.060662z m125.761684-531.411947c12.162179 12.162179 20.283504 8.101517 28.38502 8.101516-3.961622-8.101517-12.162179-8.101517-28.38502-8.101516z m20.283503 571.978954c-4.060662-4.060662-12.162179-12.162179-20.283503-8.101517 8.121325 8.101517 12.162179 8.101517 20.283503 8.101517z m97.356856-539.533272c8.121325 0 12.162179 8.101517 20.283503 3.961622-8.121325-3.961622-12.162179-8.101517-20.283503-3.961622z m-52.729186-16.222841c-8.121325-3.961622-12.181987-12.181987-24.344166-3.961622 8.121325 3.961622 16.222841 8.101517 24.344166 3.961622z m-231.239864 498.966264c3.961622 8.121325 8.121325 8.121325 16.242649 8.121325-4.08047-8.121325-8.121325-8.121325-16.242649-8.121325zM673.475704 768.851749c3.961622 0 3.961622 4.060662 8.101517 0v-3.961622H673.475704z m186.612194-519.249768c3.961622-3.961622-8.121325-3.961622-12.181987-8.121325h-3.961621c-8.101517 0-12.162179-8.101517-24.324358-3.961622 8.101517 8.101517 16.222841 12.162179 28.38502 12.162179 4.060662 0 8.121325 8.101517 12.181987 0z m-166.388115 519.249768c4.060662 4.060662 8.101517 8.121325 20.283504 8.121324-8.121325-8.121325-12.181987-12.181987-20.283504-8.121324zM478.682761 148.224079c8.121325 8.101517 16.242649 3.961622 24.344166 8.101517-8.101517-12.162179-8.101517-12.162179-24.344166-8.101517z m640.970597 133.8632c8.101517 8.121325 16.222841 12.181987 28.404828 16.222842 20.263695 12.181987 20.263695-3.961622 24.324358-12.162179s0-12.162179-8.101516-16.222841c-20.303312-8.121325-32.465491 0-40.567008 12.162178-3.961622-8.101517-3.961622-8.101517-16.242649 0 0 4.060662 8.121325 0 12.181987 0z m56.789848 56.789849c0-3.961622-3.961622-3.961622-3.961621-8.101517-3.961622 0-3.961622 0-8.101517 3.961622l3.961622 3.961622c3.961622 3.961622 8.121325 8.121325 8.121325 0z m-190.672856 511.187867c0 3.961622 8.121325 3.961622 16.242649 3.961622-4.060662-3.961622-4.060662-3.961622-8.121325-3.961622-4.060662-4.060662-8.121325-8.101517-8.121324 0z m-12.162179 0c-8.101517-8.101517-12.162179-16.222841-24.344166-8.101516 8.121325 3.961622 16.242649 3.961622 24.344166 8.101516z m40.567007-592.262457c24.344166 12.181987 48.668524 12.181987 77.073352 20.303312-8.101517-12.181987 0-20.303312 8.121325-32.465491-40.567007-12.162179-77.073352-20.283504-113.599505-32.445682-12.162179-3.961622-28.38502-8.121325-40.567007-12.181987l-8.101517 32.46549c24.344166 8.101517 48.668524 16.222841 77.073352 24.324358z m-32.445682 24.344166c-4.060662-3.961622-12.181987-8.101517-20.283504-3.961622-4.060662-8.121325-16.242649-8.121325-24.344166-8.121325-3.961622 0-8.121325-4.060662-16.242649-4.060662v8.121325c4.08047 4.060662 12.181987 4.060662 20.303311 4.060662s12.162179 0 20.283504 3.961622c4.060662 4.060662 12.162179 4.060662 16.222841 8.121324 8.101517 3.961622 12.162179 8.101517 24.344166 3.961622-8.121325-12.181987-12.181987-12.181987-20.283503-12.181987z m-166.388116 580.120086c0-12.181987 12.162179-28.404828-12.181987-28.404828-8.101517 0-12.162179-4.060662-16.222841-4.060662h-12.162179l-8.121324 32.46549c8.121325 4.060662 20.283504 4.060662 28.404828 4.060663 8.101517 3.961622 12.162179 12.162179 20.283503 8.101516 4.060662 4.060662 12.162179 8.121325 16.222842 0 0-12.162179-12.162179-3.961622-16.222842-12.162179z m628.848035-279.987619a44.152275 44.152275 0 0 0-4.139895 20.303311h4.060663c3.961622-8.121325 3.961622-12.181987 8.101516-20.303311z m12.162179-40.547199c-8.101517 8.101517-8.101517 20.283504-12.162179 32.445682 12.162179-12.162179 16.222841-20.283504 12.162179-32.445682zM1440.04952 614.744661h-3.961622c0 8.101517-3.961622 12.181987-8.101516 16.222841H1436.087898c0-3.961622 0-12.162179 3.961622-16.222841zM1196.72671 906.815227v8.121325h8.121325v-8.121325a5.645311 5.645311 0 0 0-8.121325 0z m292.090374-478.662952c3.961622-12.162179-8.121325-8.101517-12.181987-12.162179-8.101517-3.961622-16.222841-8.121325-24.344165-3.961622-8.101517-4.060662-12.162179-8.121325-20.263696-4.060662 8.101517 8.121325 16.222841 8.121325 24.324358 8.121324 8.121325 4.060662 12.181987 4.060662 20.283503 4.060663a8.715568 8.715568 0 0 1 8.121325 8.101516c0 8.121325-8.121325 12.181987 0 24.344166 3.961622-8.121325 8.101517-16.222841 3.961622-24.344166z m-113.599504-32.445683c4.060662 8.101517 12.162179 3.961622 24.344166 8.101517-8.101517-12.162179-16.222841-16.222841-24.344166-8.101517z m-60.850511 543.494894c8.121325 12.162179 20.283504 8.101517 32.465491 8.101516-12.181987-3.961622-20.283504-8.101517-32.465491-8.101516z m56.789848-547.654596c-8.101517-4.060662-12.162179-12.162179-24.324357 0 8.101517-4.060662 16.222841 4.060662 24.324357 0z m56.809657 247.541937c-8.121325 8.101517-8.121325 16.222841-8.121325 24.324358-3.961622 8.121325-3.961622 16.242649-3.961622 24.344166 8.121325-8.101517 8.121325-16.222841 12.181987-28.38502 0-4.060662 4.060662-8.121325 0-20.283504z m-141.984525 296.151037c-12.181987-4.060662-16.242649-12.162179-28.404828-8.101517 8.121325 0 16.222841 8.101517 28.404828 8.101517z m194.713711-478.682761c-3.961622 12.162179-8.101517 16.222841-8.101517 24.324358 8.101517-8.101517 12.162179-12.162179 8.101517-24.324358z m-81.213247 304.252553c4.060662-8.121325 8.121325-16.222841 4.060662-32.46549-4.060662 12.181987-12.162179 20.283504-4.060662 32.46549zM1521.262767 521.448468c-8.121325-8.121325-16.222841-4.060662-16.222841 8.101517-20.283504 73.032498-40.567007 150.10585-60.850511 223.118539 0 8.121325-8.121325 16.222841 3.961622 16.222841 8.101517 0 24.344166 16.242649 28.38502-8.101517 16.222841-64.911173 36.506345-133.8632 56.809656-198.774373 3.961622-16.242649-16.242649-24.344166-12.181987-40.567007z" p-id="15577" fill="#1296db"></path><path d="M1545.606933 476.820799c0-3.961622 8.101517-3.961622 4.060662-12.181987 0-8.101517 3.961622-16.222841-4.060662-20.283504-3.961622-8.101517 4.060662-8.101517 8.101516-8.101517 16.222841 12.162179 16.222841-4.060662 20.303312-12.181987 3.961622-3.961622 3.961622-12.162179 3.961622-16.222841 4.060662-24.344166-12.162179-40.567007-36.506345-36.506345-3.961622 0-3.961622 4.060662-8.101516 0-12.181987-16.222841-28.404828-12.162179-44.62767-16.222841-3.961622-3.961622-8.121325-8.121325-16.222841-3.961622-8.121325-4.060662-16.242649-4.060662-24.344166-8.121324s-20.283504 8.121325-28.404828 0c-20.283504-20.283504-44.627669-20.283504-68.971836-28.38502-3.961622-4.060662-12.162179-8.121325-16.222841-4.060663l-3.961622 4.060663-3.961621-4.060663c-4.060662-8.101517-12.181987-12.181987-24.344166-8.101516-3.961622 0-8.121325 0-12.162179-4.080471-8.121325-3.961622-16.242649-8.101517-24.344166 0-20.303312-12.162179-44.627669-20.263695-68.971835-20.263695 16.222841 0 16.222841 20.263695 28.404828 28.38502-3.961622 3.961622-12.181987 12.181987 3.961622 12.181987l48.688331 12.162179c3.961622 3.961622 8.121325 3.961622 12.181987 3.961622h3.961622c16.222841 0 32.465491 12.162179 48.688332 8.101516a197.268957 197.268957 0 0 0 28.38502 12.181987c16.222841 0 32.465491 12.162179 52.748994 8.101517 12.162179 0 32.445682 16.242649 48.688332 16.242649 3.961622 3.961622 12.162179 3.961622 16.222841 8.101517 16.222841 4.060662 32.445682 4.060662 44.62767 12.162179 16.222841 12.181987-3.961622 28.404828-3.961622 44.627669v12.181987l-8.121325 12.162179c-8.121325 12.162179 0 20.283504 8.121325 28.404828a3.961622 3.961622 0 0 1-4.060663 4.060662c4.060662 3.961622 0 16.222841 8.121325 16.222842s8.101517-4.060662 8.101517-12.181987c3.961622-3.961622 8.121325-8.101517 3.961622-12.162179 4.060662-8.101517 0-12.181987 0-16.222841z m-121.701022 413.771587a12.380068 12.380068 0 0 0-16.222841 0c-3.961622 4.060662-8.121325 8.121325-8.121324 12.181987s-3.961622 8.121325 0 3.961622c4.060662 0 4.060662 0 8.121324-3.961622 0 8.121325 3.961622 16.222841-3.961622 20.283504s-4.060662 8.101517 3.961622 8.101516c3.961622 0 16.222841 16.222841 16.222841 0 3.961622-12.162179 8.121325-32.445682-12.181987-36.506344 3.961622-4.060662 16.242649 4.060662 12.181987-4.060663z m24.344166-101.417518c-16.222841-16.222841-20.283504-3.961622-20.283503 8.121325-3.961622 20.283504-3.961622 40.567007-12.181987 60.850511-3.961622 16.222841 0 16.222841 12.181987 20.283503s16.222841-4.060662 20.283503-12.162179c8.101517-24.344166 12.162179-52.748994 20.283504-77.09316-8.121325-3.961622-12.181987 4.060662-20.283504 0z m-32.46549-97.356855c-3.961622 0-8.101517-4.060662-12.162179-4.060662s-4.060662-3.961622-8.121325 0l3.961622 4.060662q6.100898 12.181987 0 36.506345c24.344166-28.38502 24.344166-28.38502 16.222841-36.506345z m-8.101517 296.131229c-3.961622 0-12.181987 0-12.181987-12.162179h20.283504c-8.101517-8.101517-20.283504-24.344166-28.404828-16.222841s-12.162179 24.344166-12.162179 36.506344c0 16.222841 16.242649 4.060662 24.344166 12.181987 4.060662 3.961622 8.121325 0 8.121324-8.121324 3.961622-4.060662 8.101517-12.181987 0-12.181987z m-77.09316-3.961622c0 3.961622 0 3.961622 3.961622 8.121325 4.060662 0 4.060662 0 8.121325-4.080471l-3.961622-3.961622c-4.060662-8.121325-4.060662-4.060662-8.121325 0z m24.284742 20.204271c4.060662 8.101517 4.060662 12.162179 8.121324 16.222841h3.961622c0-8.121325 0-12.162179-12.181987-16.222841z m-235.221294-117.640359c8.101517 8.101517 16.222841 8.101517 28.404828 8.101517-8.121325-8.101517-16.242649-12.162179-28.404828-8.101517zM912.75766 829.741876c4.060662 4.060662 4.060662 4.060662 8.101517 4.060662 4.08047 3.961622 8.121325 3.961622 8.121324-4.060662-3.961622-3.961622-8.121325-3.961622-16.222841 0z m373.224389-466.520582c-12.181987-3.961622-20.283504-3.961622-28.404828-8.101517 8.121325 8.101517 12.162179 16.222841 28.404828 8.101517zM1095.388425 882.49087c8.121325 0 12.162179 8.101517 20.283503 0-8.121325-8.121325-16.222841-8.121325-24.344166-8.121325-12.162179-8.101517-24.324358-8.101517-44.627669-8.101517 16.222841 12.162179 32.465491 12.162179 48.688332 16.222842z m186.612194 101.417517c12.162179-16.222841 0-20.283504-12.181987-20.283503a76.320644 76.320644 0 0 0-32.445682-8.121325c-16.222841-4.060662-40.567007-4.060662-52.729186-12.162179-24.344166-12.181987-52.748994-16.222841-77.09316-24.344166h-3.961622c-8.121325 20.283504-16.242649 0-16.24265 0 0-8.101517-8.101517-8.101517-16.222841-12.181987-3.961622-3.961622-8.121325-3.961622-12.162179-3.961621-12.181987 8.121325-16.222841 16.222841-12.181987 32.445682 3.961622-4.060662 3.961622-8.101517 8.121325-12.162179 8.101517 8.101517 3.961622 20.283504 20.283504 20.283504s-8.101517-16.222841 3.961621-16.222841a31.692974 31.692974 0 0 1 16.222842 16.222841 58.948932 58.948932 0 0 0 12.162178 8.101516c12.181987-16.222841 8.121325 0 16.24265 4.060663 3.961622 3.961622 12.162179 3.961622 16.222841 3.961621 24.344166 8.121325 48.668524 8.121325 73.01269 20.283504s52.748994 12.181987 77.09316 20.283504c3.961622-8.101517-12.181987-8.101517-8.121325-16.222842z" p-id="15578" fill="#1296db"></path><path d="M1306.265552 371.342618c3.961622 4.060662 8.101517 8.121325 20.283504 8.121325-8.121325-3.961622-12.181987-12.181987-20.283504-8.121325z m0 0c-4.060662-3.961622-8.121325-8.121325-20.283503-3.961621 8.101517 3.961622 12.162179 8.121325 20.283503 3.961621z m-105.47818-24.40359c0-4.060662 0-4.060662-4.060662-8.121325a12.578149 12.578149 0 0 0-8.121325 3.961622 3.961622 3.961622 0 0 0 4.060663 4.060663c3.961622 0 8.121325 4.060662 8.121324 0zM1010.213556 890.592386c-24.344166-3.961622-44.607861-12.162179-68.952027-16.222841-24.344166-8.101517-48.688332-12.162179-73.032498-20.283504q-18.342309-6.001857-24.40359 12.181987c-3.961622 16.222841 8.121325 16.222841 16.242649 16.222842 12.162179 4.060662 28.38502 4.060662 36.506345 8.101516 16.222841 12.181987 36.506345-3.961622 48.668524 12.181987 20.303312 16.222841 48.688332 8.121325 73.032498 20.283504 4.060662-8.121325 16.222841-8.121325 12.162178-20.283504-3.961622-4.060662-8.101517-12.181987-20.283503-12.181987z m28.404828-592.262457c-12.162179-3.961622-20.283504-3.961622-32.46549-8.101517 8.121325 8.101517 16.242649 8.101517 32.46549 8.101517zM375.680594 322.416589a351.455277 351.455277 0 0 1-51.144537 50.272981l-51.501083 193.307335-26.424018-7.051687 43.181678-161.911482a488.844321 488.844321 0 0 1-56.472919 28.820798l-0.990405-28.563293q76.459301-34.545342 122.612194-92.345404z m10.854844-91.414422q-46.648097 56.45311-128.614051 88.700711l-0.891365-28.939647q68.872795-29.177344 108.449396-77.687403zM358.526772 412.939647l148.144847 39.616218 7.447849-27.949242 28.325595 7.566698-7.447849 27.929434 44.389973 11.884865-6.932839 25.493036-44.40978-11.884865-27.354998 102.586196q-9.270195 34.822656-46.034045 25.03745l-55.046735-14.717425 0.930981-28.048283q29.335809 9.904054 51.164345 15.688023 17.985763 4.81337 22.680285-12.796039l25.413804-95.31662-148.125039-39.517177z m29.930053 52.2736q26.978644 44.924791 37.793871 71.982668l-25.413803 9.21077q-12.479109-31.692974-37.496751-73.131538z m116.986691-212.758899l27.949242 7.467658-11.132158 41.715877 85.37295 22.759517-6.635717 24.878985-85.372949-22.759517-12.657382 47.539461 101.021356 26.958837-6.952646 26.027855-227.317859-60.711854 6.932839-26.027855 98.367069 26.225936 12.677189-47.539462-84.600433-22.482203 6.635717-24.839369 84.580625 22.561436zM756.669762 614.348499l-84.976788-22.660477-5.942432 22.581244-26.800372-7.150727 49.520273-185.641597 111.777158 29.712164 10.201176-38.289075 27.434231 7.329-10.201176 38.289075 112.906221 30.108325L891.364903 673.158774l-26.800372-7.150727 5.704735-21.432374-86.125657-22.977406-20.719282 77.707211-27.55308-7.348808z m236.904983-199.725163l-17.827298 66.991025-26.800372-7.150727 11.231198-42.11204-265.686165-70.833798-11.746209 44.013618-26.780563-7.091303 18.362117-68.892602L820.174559 368.430826c-1.426184-12.122563-2.911792-22.363355-4.516249-30.722377l30.425255 2.792944q1.327143 11.884865 2.41659 35.496131z m-303.420613 107.676881l-11.746209 44.033426 84.976788 22.660476 11.746208-43.974001z m103.239864-45.855773l-84.976788-22.660476-11.7264 44.033426 84.976787 22.640669z m-2.456206 119.898484l86.145466 22.957598 11.7264-44.013618-86.125657-22.977406z m104.408542-45.558651l11.746209-44.013618-86.125658-22.977406-11.746208 44.033426zM1040.163417 771.862581l-26.404209-6.972454 51.144537-191.762303a468.818323 468.818323 0 0 1-76.023522 92.721758l-3.961622-31.395853q56.096565-47.34138 94.227174-119.601361l-51.679356-13.865677 7.051687-26.404209 52.808418 14.083566L1107.27329 414.286599l26.424017 7.051686-19.907149 74.636955 45.162488 12.04333-7.031878 26.404209-45.182297-12.04333-6.635716 24.878985q18.064995 36.823275 36.803466 86.502012l-21.531414 19.253482q-13.766636-49.975859-23.234912-75.884866z m49.718353 10.379449l-8.596719-27.731352q146.95636-8.359022 247.423089-116.05571l20.085422 18.480965a390.219746 390.219746 0 0 1-88.997833 72.299598q33.039926 49.817394 51.025689 91.513463l-25.195915 14.598576q-15.846487-42.329929-47.539462-93.870628a382.732281 382.732281 0 0 1-148.204271 40.765088z m87.393377-304.688331l95.712782 25.512844a257.861962 257.861962 0 0 0-8.279789-42.785515l29.553698 2.951408a446.692665 446.692665 0 0 1 5.506655 46.984834l84.976787 22.660477-6.635716 24.878985-104.982978-27.96905q-46.766945 47.796967-76.617765 64.435778 48.252553 9.606933 73.666357 14.321263a300.152275 300.152275 0 0 0 37.952337-36.209223l19.035592 17.827298q-88.324358 99.040545-209.866914 110.489632l-8.715568-26.879604q75.825441-5.942433 136.992882-46.291551-50.49087-10.597338-86.878366-18.659238l0.297121-24.106469a46.568864 46.568864 0 0 0 5.942433-0.871557q26.463634-8.537295 79.945528-61.504178L1170.659239 502.432683z" p-id="15579" fill="#1296db"></path></svg>
          <svg v-else-if="item.status === 'AUDITING_SUCCESS'" t="1721620532559" class="icon work-order-status" width="80" height="80" viewBox="0 0 2112 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="32504"><path d="M443.477333 62.592C373.781333 71.424 226.133333 45.952 172.693333 8.746667c59.52-28.330667 128.576 22.549333 181.482667 7.445333 39.125333 8.874667 82.048 15.082667 89.301333 46.4z m22.954667-26.602667c69.184 29.013333 129.472 10.645333 164.053333 71.829334L459.093333 77.610667l7.338667-41.6z m531.818667 93.738667c9.045333 23.189333 67.754667 11.306667 65.664 42.24 18.538667 1.792 18.666667-22.826667 34.794666-24.512 293.333333 52.970667 678.762667 118.784 1010.474667 178.154667 17.088 56.128-50.005333 145.92-29.077333 233.941333-3.925333 19.2-23.68 15.594667-34.773334 24.490667L1967.722667 1024c-161.813333-36.586667-364.373333-48.149333-512-102.549333 32.448-20.992 54.122667-5.418667 82.730666 14.613333 23.466667 3.925333 28.053333-19.285333 46.613334-22.421333 96.64 21.568 280.832 50.005333 378.154666 66.666666 35.946667-219.242667 68.778667-386.474667 109.056-618.282666-369.621333-69.269333-757.76-125.44-1115.776-202.858667-5.802667-38.165333 34.709333-9.706667 41.749334-29.418667h-0.021334z m-111.573334 10.986667c16.938667 8.896 62.144-2.133333 56.96 22.314666-16.96-8.874667-62.165333 2.154667-56.96-22.314666z m-763.733333-91.733334l17.706667 3.136c-36.437333 223.786667-65.834667 384.426667-91.946667 590.634667 223.146667 52.458667 480.384 67.946667 683.370667 132.736 112.874667 14.506667 259.818667 25.066667 372.266666 65.642667 23.893333-11.349333 121.109333-8.405333 109.12 37.610666-13.12 29.397333-44.266667-7.466667-59.072-10.410666-365.44-35.925333-772.8-132.053333-1154.389333-191.253334C42.133333 461.034667 72.490667 211.754667 122.944 48.981333z m1143.04 808.405334c14.4 20.416 74.026667 30.933333 94.570667 16.64-5.013333 12.202667 6.4 12.821333 15.616 15.04l-5.248 29.717333c-45.952-30.613333-84.928-16.597333-141.824-25.002667l5.226666-29.738666c11.626667-0.64 34.197333 14.4 31.658667-6.656z m151.552 38.954666c22.826667 1.258667 18.048 21.973333 24.277333 34.944l-41.365333-7.296c-1.173333-19.114667 21.653333-3.626667 17.066667-27.648zM497.813333 224.256l2.773334 0.490667 25.28 11.648 13.866666 11.093333 1.578667 7.466667-1.237333 6.976-8.96 9.92-8.426667 7.146666-8.384-1.493333-5.013333-12.373333-3.52-20.757334-7.957334-20.117333z m-105.621333 11.584l2.773333 0.490667 4.458667 23.808 241.344 42.56 18.56-15.424 2.773333 0.490666 26.026667 31.914667-0.490667 2.773333-21.013333 4.949334-15.168 4.501333-18.069333 12.650667-12.373334 5.013333 20.586667-35.2L400.213333 271.786667l-1.962666 11.157333-4.757334 10.666667-10.346666 9.706666-12.629334 6.4-11.157333-1.984-6.250667-5.397333 1.962667-11.178667 13.866667-13.376 14.378666-16.170666 8.853334-25.770667z m107.754667 57.856l14.613333 6.890667 21.098667 10.901333-0.746667 4.181333-10.346667 9.685334-5.888 33.493333 71.146667 12.544 18.773333-16.832 4.202667 0.746667 5.504 9.6 14.933333 21.333333-15.914666 8.704-18.858667 123.264-15.189333 4.522667-11.904 2.218666 4.693333-26.517333-79.530667-14.016-13.376 83.946667-16.576 4.266666-11.904 2.218667 16.746667-94.869333-71.168-12.544-3.925333 22.314666-26.581334 3.946667-4.202666-0.725333 30.272-171.605334 27.306666 16.32-0.725333 4.181334 71.146667 12.544 5.909333-33.493334 0.490667-27.221333z m-16.213334 116.522667l8.597334-48.832-71.146667-12.544-8.618667 48.853333 71.146667 12.522667z m104.618667 18.453333l8.618667-48.832-79.530667-14.016-8.618667 48.832 79.530667 14.016z m-114.986667 40.149333l8.618667-48.832-71.146667-12.544-8.597333 48.832 71.146667 12.544z m104.661334 18.453334l8.597333-48.853334-79.509333-13.994666-8.618667 48.832 79.530667 14.016z m198.656-209.514667l18.304 10.410667 16.917333 10.176-0.746667 4.181333-10.346666 9.685333-10.56 59.989334 19.52 3.456 18.794666-16.832 2.773334 0.490666 18.901333 23.466667-1.728 9.770667-59.989333-10.581334-6.4 36.266667 14.357333 8.298667 17.578667 14.592 9.92 8.96 0.832 11.648-0.746667 4.181333-9.685333 14.122667-6.976-1.237334-7.637334-5.653333-3.776-19.370667-7.701333-21.504-7.146667-8.448-30.336 180.224-16.576 4.266667-11.904 2.218667 29.525334-167.424-13.632 11.989333-23.296 26.090667-24.213334 23.061333-22.058666 19.136-4.202667-0.746667 14.613333-17.557333 19.776-22.4 15.104-20.352 15.829334-24.533333 16.32-27.349334 17.066666-31.509333 0.256-1.408-44.650666-7.872-4.437334 0.661333-2.773333-0.490666-9.194667-13.12 62.762667 11.072 10.581333-59.989334 0.981334-30.037333z m141.824 27.882667l2.773333 0.490666 10.453333 6.144 14.08 9.685334 13.397334 13.866666 0.810666 11.648-0.725333 4.181334-4.757333 10.666666-5.418667 6.250667-7.722667 2.944-4.181333-0.725333-6.229333-5.418667-0.981334-18.88-3.797333-19.370667-7.701333-21.482666z m95.36 62.848l4.181333 0.725333 22.570667 27.008-1.962667 11.157333-122.773333-21.653333 16.170666 14.357333-0.746666 4.181334-16.064 1.493333-13.632 11.989333-42.922667 31.253334 76.736 13.546666 5.418667-6.250666 15.104-20.352 11.818666-18.048 2.773334 0.490666 18.88 23.466667-0.490667 2.773333-15.424 5.930667-14.357333 16.170667-24.213334 23.04-22.058666 19.136-21.333334 14.933333-25.536 14.208-25.024 11.413333-29.226666 10.666667-28.949334 9.28-2.794666-0.490667 33.237333-17.152 29.696-13.461333 25.536-14.208 30.506667-26.261333 23.978666-21.674667 8.938667-9.92-27.008-1.898667-30.762667 3.2-30.528 1.834667-4.202666-0.746667-3.029334-23.552 0.746667-4.181333 14.442667-0.341333 18.048-12.629334 14.357333-16.170666 19.370667-28.245334-47.445334-8.362666-9.173333-13.12 145.066667 25.6 22.08-19.136z m-34.773334 131.968l4.181334 0.725333 18.88 23.466667-0.490667 2.794666-11.904 2.218667-13.866667 13.376-36.096 25.28 17.813334 13.226667 15.424 18.538666 12.885333 16.64 2.453333 10.517334-0.490666 2.773333-5.653334 7.637333-8.96 9.941334-8.853333 1.322666-2.773333-0.490666-1.728-14.72-3.285334-22.144-7.978666-20.096-10.496-21.994667-6.314667 3.2-25.770667 15.594667-28.074666 12.309333-33.152 8.533333-35.456 5.269334-30.506667 1.813333-4.202667-0.746667 81.984-24.384 33.237334-17.152 33.962666-21.333333 26.261334-18.389333 14.357333-16.170667 14.613333-17.557333z m377.984-108.864l4.202667 0.746666 18.389333 26.24-0.512 2.816-27.968 3.690667-19.370666 3.776-33.408 9.941333-17.472 1.216 2.304 3.285334-0.746667 4.181333-5.418667 6.250667-8.192 5.76-4.202666-0.746667-6.464-4.032-6.4-12.629333-20.458667-30.933334 11.157333 1.962667 23.893334 11.392 11.093333 10.602667 7.701333-2.965334 37.418667-16.426666 3.52-3.690667-136.725333-24.106667-9.173334-13.12 156.245334 27.541334 8.213333-5.738667 12.373333-5.013333z m-266.133333-32.533334l2.773333 0.490667 17.578667 14.613333 13.226667 6.634667 12.629333 18.048 2.218667 11.904-1.237334 6.976-5.397333 6.229333-8.96 9.941334-9.109333 2.709333-6.229334-5.418667-3.690666-3.52 1.877333-27.008-7.957333-20.096-7.722667-21.504z m253.845333 102.293334l4.181334 0.746666 9.685333 10.325334 11.498667 16.426666-13.141334 9.173334-22.122666 150.037333-7.722667 2.944-13.12 9.194667-16.576 4.266666-4.202667-0.725333-0.064-15.850667-7.146666-8.448-9.941334-8.96-13.226666-6.613333 0.746666-4.202667 24.384 8.618667 11.157334 1.962667 9.109333-2.709334 5.418667-30.698666-53.013334-9.344-9.344 53.013333-29.312-5.162667 10.752-52.757333-50.218666-8.853333-9.365334 53.013333-25.109333-4.437333 32.725333-185.557334 23.146667 15.573334 126.933333 22.4 13.866667-13.376z m-92.970666 29.653333l3.925333-22.336-53.013333-9.344-8.618667 48.832 51.626667 9.088 6.08-26.24z m73.450666 40.277333l8.597334-48.853333-53.013334-9.322667-8.597333 48.832 53.013333 9.344z m-218.453333-50.026666l4.181333 0.725333 23.786667 20.032-0.490667 2.773333-10.325333 9.706667-17.706667 100.437333 2.688 9.109334 16.170667 14.357333 25.045333 13.056 28.544 9.344 82.325334 14.506667 45.376 3.690666 34.474666 0.32 26.496 4.693334-0.490666 2.773333-16.576 4.266667-12.373334 5.013333-9.706666 14.122667-160.426667-28.288-27.818667-13.546667-17.578666-14.592-12.224-12.245333-6.656-11.242667-13.205334-6.634667-4.181333-0.746666-11.904 2.218666-18.304 14.037334-14.357333 16.170666-2.773334-0.490666-12.16-20.842667 0.746667-4.181333 44.629333-16.576 4.906667-3.456 18.474667-104.64-37.674667-6.634667-3.029333 0.896-4.181334-0.725333-5.504-9.6 47.424 8.362666 14.357334-16.170666z m127.701333 91.562666l9.493334-45.802666-51.626667-9.088-8.106667 46.037333 50.24 8.853333z m80.917334 14.272l8.106666-46.037333-53.013333-9.365333-8.106667 46.037333 53.013334 9.365333z m345.728-146.197333l16.917333 10.176 20.842667 12.309333-0.490667 2.773334-10.346667 9.706666-9.834666 55.808 19.52 3.434667 22.08-19.114667 4.181333 0.725334 22.570667 27.008-1.962667 11.157333-68.352-12.053333-24.938667 149.525333-3.370666 10.922667-8.192 5.738666-8.448 7.146667-12.394667 4.992-16.085333 1.493333-2.773334-0.490666-2.24-11.904-9.173333-13.12-14.634667-6.912-12.714666-9.429334 0.746666-4.181333 39.722667 11.306667 15.338667 2.709333 3.52-3.690667 26.325333-149.269333-118.592-20.906667-9.173333-13.141333 129.728 22.890667 9.856-55.808 2.368-29.802667z m-207.786667-20.8l6.976 1.216 18.304 10.432 15.424 18.538667 9.194667 13.12 4.522666 15.189333-0.746666 4.181333-9.685334 14.122667-11.648 0.810667-4.181333-0.725334-9.194667-13.141333-3.050666-23.552-3.776-19.349333-12.16-20.842667z m86.421333 121.685333l6.976 1.216 19.626667 19.285334 15.424 18.56 5.184 19.605333-0.746667 4.181333-10.837333 12.48-11.882667 2.218667-2.794666-0.490667-7.146667-8.448-2.304-27.733333-7.232-24.32-4.266667-16.554667z m-72.618666-4.181333l4.181333 0.746667 21.909333 22.549333-1.216 6.976-9.856 6.912-16.981333 96.256 9.856 17.557333 19.861333 17.898667 17.642667 5.973333 19.050667 6.250667 50.88 13.269333 44.650666 7.893334 49.557334 4.416 33.984 3.114666-0.490667 2.773334-18.069333 12.650666-14.357334 16.170667-29.290666-5.162667-81.578667-18.709333-32.981333-8.682667-20.842667-12.309333-21.12-10.922667-16.896-10.154666-14.506667-15.509334-14.784-14.122666-4.181333-0.746667-12.394667 5.013333-19.541333 21.013334-22.058667 19.136-4.181333-0.746667-13.482667-29.717333 32-10.176 30.464-17.642667 7.701334-2.965333 18.453333-104.618667-51.626667-9.109333-5.738666-8.213334 51.626666 9.109334 14.357334-16.170667z" fill="#2daf36" p-id="32505"></path></svg>
          <svg v-else-if="item.status === 'AUDITING_FAIL'" t="1721617594236" class="icon work-order-status" width="80" height="80" viewBox="0 0 2112 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="16693"><path d="M443.477333 62.592C373.781333 71.424 226.133333 45.952 172.693333 8.746667c59.52-28.330667 128.576 22.549333 181.482667 7.445333 39.125333 8.874667 82.048 15.082667 89.301333 46.4z m22.954667-26.602667c69.184 29.013333 129.472 10.645333 164.053333 71.829334L459.093333 77.610667l7.338667-41.6z m531.818667 93.738667c9.045333 23.189333 67.754667 11.306667 65.664 42.24 18.538667 1.792 18.666667-22.826667 34.794666-24.512 293.333333 52.970667 678.762667 118.784 1010.474667 178.154667 17.088 56.128-50.005333 145.92-29.077333 233.941333-3.925333 19.2-23.68 15.594667-34.773334 24.490667L1967.722667 1024c-161.813333-36.586667-364.373333-48.149333-512-102.549333 32.448-20.992 54.122667-5.418667 82.730666 14.613333 23.466667 3.925333 28.053333-19.285333 46.613334-22.421333 96.64 21.568 280.832 50.005333 378.154666 66.666666 35.946667-219.242667 68.778667-386.474667 109.056-618.282666-369.621333-69.269333-757.76-125.44-1115.776-202.858667-5.802667-38.165333 34.709333-9.706667 41.749334-29.418667h-0.021334z m-111.573334 10.986667c16.938667 8.896 62.144-2.133333 56.96 22.314666-16.96-8.874667-62.165333 2.154667-56.96-22.314666z m-763.733333-91.733334l17.706667 3.136c-36.437333 223.786667-65.834667 384.426667-91.946667 590.634667 223.146667 52.458667 480.384 67.946667 683.370667 132.736 112.874667 14.506667 259.818667 25.066667 372.266666 65.642667 23.893333-11.349333 121.109333-8.405333 109.12 37.610666-13.12 29.397333-44.266667-7.466667-59.072-10.410666-365.44-35.925333-772.8-132.053333-1154.389333-191.253334C42.133333 461.034667 72.490667 211.754667 122.944 48.981333z m1143.04 808.405334c14.4 20.416 74.026667 30.933333 94.570667 16.64-5.013333 12.202667 6.4 12.821333 15.616 15.04l-5.248 29.717333c-45.952-30.613333-84.928-16.597333-141.824-25.002667l5.226666-29.738666c11.626667-0.64 34.197333 14.4 31.658667-6.656z m151.552 38.954666c22.826667 1.258667 18.048 21.973333 24.277333 34.944l-41.365333-7.296c-1.173333-19.114667 21.653333-3.626667 17.066667-27.648zM340.672 218.965333l2.794667 0.490667 25.28 11.648 13.866666 11.072 1.557334 7.466667-1.216 6.976-8.96 9.92-8.448 7.146666-8.362667-1.472-5.013333-12.373333-3.52-20.778667-7.978667-20.096z m-105.6 11.584l2.773333 0.490667 4.437334 23.786667 241.365333 42.56 18.56-15.424 2.773333 0.490666 26.026667 31.914667-0.490667 2.773333-21.013333 4.949334-15.189333 4.522666-18.048 12.629334-12.373334 5.013333 20.586667-35.2-241.365333-42.581333-1.962667 11.178666-4.757333 10.666667-10.346667 9.685333-12.629333 6.4-11.178667-1.962666-6.229333-5.418667 1.962666-11.157333 13.866667-13.376 14.357333-16.170667 8.874667-25.770667z m107.733333 57.813334l14.634667 6.912 21.077333 10.901333-0.725333 4.202667-10.346667 9.685333-5.909333 33.493333 71.168 12.522667 18.773333-16.810667 4.202667 0.725334 5.482667 9.6 14.933333 21.333333-15.914667 8.704-18.858666 123.264-15.168 4.522667-11.904 2.218666 4.693333-26.517333-79.552-14.016-13.354667 83.946667-16.576 4.266666-11.904 2.218667 16.725334-94.869333-71.146667-12.544-3.925333 22.336-26.602667 3.925333-4.181333-0.725333 30.250666-171.605334 27.328 16.32-0.725333 4.202667 71.146667 12.544 5.909333-33.493333 0.490667-27.242667z m-16.213333 116.565333l8.618667-48.853333-71.168-12.522667-8.597334 48.810667 71.146667 12.565333z m104.64 18.432l8.597333-48.832-79.509333-14.016-8.618667 48.853333 79.530667 13.994667z m-114.986667 40.149333l8.618667-48.832-71.146667-12.544-8.618666 48.853334 71.168 12.522666z m104.64 18.453334l8.618667-48.832-79.530667-14.016-8.597333 48.832 79.509333 14.016z m198.677334-209.514667l18.304 10.410667 16.896 10.176-0.725334 4.181333-10.346666 9.685333-10.581334 59.989334 19.541334 3.456 18.773333-16.832 2.816 0.490666 18.858667 23.466667-1.706667 9.770667-59.989333-10.581334-6.4 36.266667 14.357333 8.298667 17.557333 14.613333 9.941334 8.938667 0.810666 11.648-0.725333 4.181333-9.685333 14.122667-6.976-1.237334-7.637334-5.653333-3.776-19.370667-7.722666-21.504-7.125334-8.448-30.336 180.224-16.576 4.266667-11.904 2.218667 29.504-167.424-13.610666 11.989333-23.296 26.112-24.213334 23.04-22.08 19.136-4.181333-0.725333 14.613333-17.578667 19.776-22.4 15.082667-20.352 15.850667-24.533333 16.32-27.349334 17.066666-31.509333 0.234667-1.386667-44.629333-7.893333-4.437334 0.682667-2.773333-0.512-9.216-13.12 62.784 11.072 10.581333-59.989334 0.981334-30.037333z m141.802666 27.882667l2.794667 0.490666 10.432 6.144 14.122667 9.685334 13.376 13.866666 0.810666 11.648-0.725333 4.202667-4.757333 10.666667-5.418667 6.229333-7.722667 2.965333-4.181333-0.746666-6.229333-5.418667-1.002667-18.858667-3.776-19.370666-7.722667-21.504z m95.36 62.848l4.202667 0.746666 22.570667 26.986667-1.962667 11.157333-122.773333-21.653333 16.170666 14.357333-0.746666 4.202667-16.085334 1.472-13.610666 11.989333-42.922667 31.274667 76.736 13.525333 5.418667-6.250666 15.082666-20.352 11.818667-18.048 2.794667 0.490666 18.88 23.466667-0.490667 2.773333-15.424 5.930667-14.357333 16.170667-24.213334 23.061333-22.08 19.114667-21.333333 14.933333-25.514667 14.208-25.024 11.413333-29.226666 10.666667-28.949334 9.28-2.794666-0.490667 33.237333-17.152 29.696-13.44 25.514667-14.229333 30.528-26.24 23.957333-21.674667 8.96-9.941333-27.008-1.877333-30.784 3.2-30.506667 1.813333-4.202666-0.746667-3.029334-23.552 0.725334-4.181333 14.442666-0.341333 18.069334-12.629334 14.357333-16.170666 19.349333-28.224-47.424-8.362667-9.194666-13.141333 145.088 25.6 22.08-19.136z m-34.773333 131.968l4.202667 0.725333 18.88 23.466667-0.490667 2.794666-11.904 2.218667-13.866667 13.376-36.096 25.28 17.792 13.226667 15.445334 18.538666 12.885333 16.64 2.453333 10.517334-0.490666 2.773333-5.653334 7.658667-8.96 9.92-8.853333 1.322666-2.773333-0.490666-1.749334-14.698667-3.285333-22.144-7.957333-20.117333-10.496-21.973334-6.336 3.2-25.749334 15.573334-28.074666 12.330666-33.152 8.533334-35.456 5.248-30.506667 1.813333-4.202667-0.725333 81.984-24.384 33.237334-17.173334 33.962666-21.333333 26.261334-18.389333 14.357333-16.170667 14.613333-17.557333z m246.037333-143.637334l16.917334 10.176 18.304 10.432-0.746667 4.181334-10.325333 9.685333-7.146667 40.448 59.989333 10.581333 26.752-21.162666 4.181334 0.725333 9.194666 13.141333 15.68 17.130667-1.962666 11.178667-115.797334-20.416-13.290666 75.328 93.482666 16.490666 26.986667-22.570666 4.181333 0.725333 9.194667 13.141333 15.445333 18.538667-1.728 9.770667-135.338666-23.872 0.661333 4.437333 11.413333 25.024 17.642667 30.442667 19.626667 19.285333 29.546666 28.224 23.146667 15.573333 29.44 12.394667-0.725333 4.202667-20.010667-0.661334-25.28 12.8-2.773333-0.490666-20.117334-16.490667-26.773333-27.733333-18.389333-26.24-10.752-20.608-10.666667-29.226667-3.776-19.349333-0.576-13.056-5.589333-0.981334-29.994667 170.197334-25.130667-4.416 30.016-170.218667-5.568-0.981333-5.013333 12.074666-19.114667 26.837334-23.466666 18.88-22.08 19.114666-30.442667 17.642667-32.490667 12.970667-28.714666 7.893333-18.88 0.981333 0.725333-4.181333 41.856-17.066667 29.056-17.92 30.933333-20.416 27.733334-26.773333 24.789333-34.453333-103.253333-18.218667-4.437334 0.661333-4.181333-0.746666-9.173333-13.12 153.450666 27.050666 13.290667-75.328-115.797333-20.416-9.194667-13.141333 126.954667 22.4 7.125333-40.469333 0.981333-30.037334z m486.933334 97.365334l4.181333 0.746666 18.389333 26.24-0.490666 2.816-27.989334 3.690667-19.370666 3.776-33.386667 9.941333-17.493333 1.237334 2.304 3.264-0.725334 4.202666-5.418666 6.229334-8.213334 5.76-4.181333-0.746667-6.485333-4.032-6.4-12.629333-20.437334-30.933334 11.157334 1.962667 23.893333 11.413333 11.072 10.581334 7.701333-2.965334 37.418667-16.426666 3.541333-3.690667-136.746666-24.106667-9.173334-13.12 156.245334 27.541334 8.213333-5.738667 12.373333-5.013333z m-266.133334-32.533334l2.773334 0.490667 17.578666 14.613333 13.205334 6.634667 12.650666 18.048 2.197334 11.904-1.216 6.976-5.418667 6.250667-8.96 9.92-9.088 2.709333-6.250667-5.418667-3.690666-3.52 1.898666-27.008-7.978666-20.096-7.701334-21.504zM1542.613333 518.613333l4.202667 0.746667 9.685333 10.325333 11.477334 16.426667-13.12 9.173333-22.144 150.037334-7.701334 2.944-13.141333 9.194666-16.576 4.266667-4.181333-0.725333-0.085334-15.850667-7.146666-8.448-9.92-8.938667-13.226667-6.656 0.746667-4.181333 24.362666 8.618667 11.178667 1.962666 9.109333-2.709333 5.397334-30.677333-53.013334-9.365334-9.344 53.013334-29.290666-5.162667 10.730666-52.757333-50.218666-8.853334-9.344 53.013334-25.109334-4.437334 32.704-185.557333 23.146667 15.594667 126.954667 22.4 13.866666-13.397334z m-92.970666 29.653334l3.946666-22.336-53.013333-9.344-8.618667 48.832 51.626667 9.109333 6.058667-26.261333z m73.450666 40.277333L1531.733333 539.733333l-53.013333-9.344-8.618667 48.832 53.013334 9.344z m-218.453333-50.026667l4.181333 0.725334 23.808 20.032-0.490666 2.773333-10.346667 9.706667-17.706667 100.437333 2.709334 9.109333 16.170666 14.357334 25.024 13.056 28.565334 9.344 82.304 14.506666 45.376 3.690667 34.474666 0.32 26.517334 4.693333-0.490667 2.773334-16.576 4.266666-12.394667 5.013334-9.685333 14.122666-160.426667-28.288-27.84-13.546666-17.557333-14.592-12.224-12.224-6.656-11.242667-13.226667-6.656-4.181333-0.746667-11.882667 2.218667-18.304 14.037333-14.357333 16.170667-2.794667-0.490667-12.16-20.842666 0.746667-4.181334 44.650667-16.576 4.906666-3.456 18.453334-104.64-37.674667-6.634666-3.029333 0.896-4.181334-0.725334-5.504-9.6 47.445334 8.362667 14.357333-16.170667z m127.701333 91.562667l9.514667-45.802667-51.626667-9.088-8.106666 46.037334 50.218666 8.853333z m80.917334 14.272l8.106666-46.037333-53.013333-9.365334-8.106667 46.058667 53.013334 9.344z m345.749333-146.197333l16.896 10.176 20.842667 12.309333-0.490667 2.794667-10.325333 9.685333-9.856 55.808 19.541333 3.434667 22.058667-19.114667 4.202666 0.725333 22.570667 27.008-1.984 11.157334-68.352-12.053334-24.917333 149.546667-3.370667 10.88-8.213333 5.76-8.448 7.146667-12.373334 5.013333-16.106666 1.472-2.773334-0.490667-2.218666-11.904-9.194667-13.12-14.613333-6.890666-12.714667-9.450667 0.725333-4.181333 39.722667 11.306666 15.36 2.730667 3.52-3.712 26.325333-149.269333-118.613333-20.906667-9.173333-13.141333 129.749333 22.890666 9.834667-55.808 2.389333-29.802666z m-207.786667-20.8l6.954667 1.216 18.304 10.432 15.424 18.538666 9.194667 13.12 4.522666 15.189334-0.746666 4.181333-9.664 14.122667-11.669334 0.832-4.181333-0.746667-9.173333-13.12-3.050667-23.573333-3.776-19.349334-12.16-20.842666z m86.4 121.685333l6.997334 1.237333 19.626666 19.264 15.424 18.56 5.162667 19.626667-0.746667 4.16-10.816 12.48-11.904 2.218667-2.773333-0.490667-7.168-8.448-2.282667-27.733333-7.253333-24.32-4.266667-16.554667z m-72.618666-4.181333l4.181333 0.746666 21.930667 22.570667-1.237334 6.976-9.834666 6.890667-16.981334 96.256 9.856 17.557333 19.84 17.898667 17.664 5.973333 19.029334 6.250667 50.88 13.290666 44.650666 7.872 49.578667 4.416 33.962667 3.114667-0.490667 2.773333-18.048 12.650667-14.357333 16.170667-29.312-5.162667-81.557334-18.709333-33.002666-8.682667-20.842667-12.309333-21.098667-10.901334-16.896-10.176-14.528-15.509333-14.784-14.122667-4.181333-0.725333-12.373333 4.992-19.541334 21.013333-22.08 19.136-4.181333-0.746666-13.461333-29.696 32-10.197334 30.442666-17.642666 7.722667-2.944 18.453333-104.64-51.626666-9.109334-5.76-8.213333 51.626666 9.109333 14.357334-16.170666z" fill="#FD5D5D" p-id="16694"></path></svg>
          <svg v-else-if="item.status === 'OVER_TIME_NOT_FINISH'" t="1721640246606" class="icon work-order-status" width="72" height="72" viewBox="0 0 1280 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="7480"><path d="M31.219512 567.07122c-3.996098-1.623415-6.618537-4.120976-4.49561-7.617561 9.740488-6.119024 21.978537-2.122927 31.219513-9.365854V546.965854c-10.24-9.365854-0.499512-12.487805 5.619512-13.986342 14.360976-3.496585 27.598049-11.363902 42.958049-10.86439 7.617561 0 8.741463 1.498537 6.119024 10.364878 5.619512-0.499512 14.860488 4.120976 9.740488-8.741463 19.85561-47.079024 24.476098-95.157073 12.238049-144.608781-3.121951-10.86439 4.620488-17.482927 6.618536-26.349268 5.12-24.226341 12.362927-48.078049 25.100488-69.681951 3.121951-4.620488-7.617561-10.364878 0-13.48683 5.619512-2.497561 8.741463 3.121951 9.740488 8.241952 17.857561-0.999024 23.976585-12.987317 32.218536-27.972683 18.357073-34.091707 42.958049-64.062439 70.056586-91.910244 36.839024-38.212683 74.677073-75.301463 120.382439-103.274147 7.742439-4.620488 14.860488-9.365854 24.101463-8.241951 3.121951 0 7.242927 0.999024 8.741464-0.499512 30.220488-29.970732 70.680976-30.470244 108.14439-40.710244 49.576585-6.119024 79.297561-5.619512 157.720975 0 48.577561 2.622439 94.282927 14.485854 138.739513 33.592195 53.198049 22.602927 101.900488 53.697561 144.359024 93.908293 18.856585 17.982439 38.837073 35.090732 54.821463 56.32 8.616585 11.863415 19.980488 11.363902 32.218537 7.118049 30.345366-10.86439 60.81561-21.10439 91.660488-30.969756 9.240976-2.997073 21.978537-10.364878 27.598049 3.121951 6.119024 14.485854 20.979512 29.47122 4.620487 47.079024-6.119024 0.999024-13.861463 2.497561-15.859512-4.620488-4.620488-17.607805-14.360976-11.988293-25.100488-7.742439-94.282927 37.588293-192.561951 62.938537-288.343414 95.531708-148.979512 50.57561-298.958049 99.153171-448.062439 149.853658-23.601951 7.617561-49.201951 5.619512-72.679025 11.863415 1.623415 1.998049-0.999024 5.12-2.497561 5.619512-8.241951 1.498537-15.36 8.117073-24.600975 6.119024-10.739512 8.241951-24.101463 9.365854-36.339512 12.987317-8.241951 3.121951-15.859512 7.242927-24.101464 9.365854-4.620488 0.999024-6.119024-0.499512-5.619512-3.121951-20.979512 4.620488-41.459512 11.988293-61.44 18.606829-1.123902 0-2.622439 0.499512-3.621463 0.999025-0.499512 2.997073-1.998049 6.119024-7.118049 6.618536-6.618537 6.119024-14.73561 7.742439-23.477073 9.365854-10.739512 8.241951-24.600976 8.241951-36.339513 13.486829-2.997073 1.498537-7.617561 7.118049-11.239024 1.498537-4.120976-6.618537 7.118049-5.12 7.118049-10.364878-10.24-0.999024-19.356098 3.621463-28.097561 8.741463 5.619512 18.606829-8.741463 11.988293-16.359025 13.986341-11.363902 7.242927-23.726829 10.86439-36.46439 12.86244zM522.86439 55.320976c-6.743415-3.121951-12.362927-3.621463-19.980488 6.119024 8.741463-4.120976 15.859512 2.122927 19.980488-6.119024h0.499512-0.499512l0.124878 0.999024v-0.499512c6.119024-0.499512 13.237073 2.497561 17.358049-4.620488 16.858537 0.999024 32.718049-2.997073 48.577561-5.619512C670.220488 33.717073 748.14439 48.702439 822.321951 80.171707c71.05561 29.970732 131.621463 75.925854 180.698537 136.36683 1.998049 2.122927 0.499512 9.365854 6.618536 4.620487 2.497561-2.122927 0.999024-4.620488 0.999025-7.242926 1.498537-19.106341-14.860488-20.604878-24.600976-29.970732-21.479024-21.10439-42.958049-41.209756-67.559024-58.318049-81.29561-56.819512-169.834146-89.412683-269.736586-88.913171-37.838049 0-75.676098 0.999024-112.64 10.364878-3.496585 4.120976-12.737561-0.499512-12.737561 8.36683h-0.499512v-0.124878z m-69.057561 21.10439c-14.360976 3.121951-24.600976 6.243902-32.718049 13.986341 11.738537-0.999024 22.478049-2.622439 32.718049-13.986341zM411.722927 98.653659C324.183415 131.746341 213.541463 263.992195 209.045854 330.552195c42.458537-100.651707 112.140488-175.453659 202.677073-231.898536zM192.062439 474.161951c-0.499512 5.12-3.621463 12.362927 3.121951 15.859512 6.743415 3.621463 44.581463-13.861463 46.08-21.603902 5.12-22.727805 7.242927-46.454634 14.360976-68.682927C300.331707 258.122927 393.365854 164.214634 533.229268 118.759024c48.078049-15.484878 98.279024-18.107317 148.48-13.986341 5.12 0.499512 10.739512 0 9.740488 8.241951-0.499512 7.118049-5.619512 5.619512-9.740488 5.619512h-11.239024c-73.053659-3.121951-143.36 9.365854-208.296585 45.45561-112.265366 62.189268-177.201951 158.09561-202.92683 283.098537-3.121951 14.485854-5.619512 25.350244 17.857561 17.607805 135.617561-45.45561 271.859512-89.287805 408.101464-133.744391 84.042927-27.847805 167.461463-55.69561 252.003902-84.167805-44.581463-52.074146-100.401951-84.667317-161.342439-108.394146-12.238049-5.12-12.238049-4.620488-12.238049-19.605854 60.316098 21.72878 118.259512 47.578537 160.718049 96.65561 23.601951 27.348293 45.080976 23.601951 71.68 11.863415 1.623415-1.123902 3.621463-1.623415 8.741463-3.121951-34.216585-37.213659-66.435122-71.305366-107.52-97.155122-86.665366-54.197073-179.699512-81.170732-282.723902-72.803903-39.461463 3.121951-77.299512 10.364878-114.263415 22.727805-110.142439 37.213659-193.560976 107.395122-251.004878 208.67122-33.092683 58.193171-52.573659 121.256585-57.194146 188.440975z m-11.738537 361.397073c1.998049 2.122927 6.618537 6.243902 6.493659 6.243903-5.12 7.118049-12.862439 7.617561-20.48 7.118049-16.359024 4.620488-28.597073 22.228293-48.577561 13.486829-4.120976-5.619512-9.740488-6.743415-9.740488 0.999024-0.499512 10.86439-9.240976 9.865366-13.861463 11.363903-6.243902 2.122927-7.242927-6.618537-8.241951-10.364878-22.977561-71.804878-54.696585-139.988293-69.057561-214.790244-5.12-26.973659-7.242927-54.821463-14.860488-81.670244-0.999024-3.621463-4.120976-6.743415 0.999024-8.241951 2.622439-0.499512 6.618537 2.622439 9.740488 3.621463 4.620488-1.498537 6.119024 0.999024 5.12 5.12C46.454634 657.233171 75.176585 745.521951 103.399024 834.310244c3.496585 10.364878 8.616585 12.862439 17.358049 6.119024 4.620488 7.242927 16.858537-18.107317 17.857561 4.120976 3.121951 5.619512 6.119024 7.118049 9.240976 0.499512-5.12-5.619512-8.241951-10.364878 2.497561-13.986341 19.980488-6.119024 39.836098-11.363902 58.817561-21.104391 7.118049-3.496585 9.116098 1.123902 7.118048 7.742439-8.366829 13.736585-24.725854 9.990244-35.964878 17.857561zM279.726829 141.611707c-2.622439 0.499512-3.621463-1.623415-3.121951-4.620487 0.999024-4.120976 3.496585-6.119024 7.617561-5.619513 2.122927 0.499512 4.620488 0.999024 3.621463 4.120976-1.498537 4.120976-4.49561 5.619512-8.117073 6.119024zM1081.56878 800.468293c-0.999024-9.865366 2.997073-14.985366 12.238049-20.604878-0.999024 10.24-2.497561 16.483902-12.238049 20.604878z m178.700488-415.219513c7.242927 21.603902 13.361951 43.457561 17.982439 65.685854v17.732683c-38.462439 12.487805-76.300488 24.850732-114.762927 36.714146-9.740488 3.121951-17.982439 8.241951-18.981463 19.106342-2.497561 21.603902-4.120976 42.958049-6.119024 64.561951 0 0.499512-0.499512 1.498537 0 1.998049 20.48 15.98439 3.621463 33.092683-0.999025 48.078049-5.619512 18.107317-5.12 37.213659-15.859512 54.197073-9.240976 14.485854-13.861463 32.093659-19.480976 48.577561-4.620488 12.987317-0.999024 27.473171-20.48 33.592195-9.240976 2.997073-12.238049 22.602927-21.479024 31.469268-14.73561 14.485854-13.736585 40.210732-33.717073 49.576586-21.479024 10.364878-31.219512 33.592195-53.198049 43.957073-16.983415 8.117073-30.72 23.601951-45.080975 36.089756-19.356098 16.60878-40.835122 25.849756-65.436098 32.093658-28.597073 7.742439-55.820488 20.105366-84.542439 29.47122-37.338537 11.863415-75.800976 16.983415-114.762927 20.105366-4.120976 0.499512-9.240976-1.498537-11.239024 4.620488H561.95122v-7.742439c-49.201951-13.861463-97.90439-30.470244-146.481952-45.955122-17.982439-5.619512-38.337561-7.242927-57.319024-13.48683-7.118049-2.497561-11.738537-5.619512-15.859512-11.363902 4.120976-5.12 17.358049-0.999024 15.36-8.866342-3.121951-11.988293-17.982439-13.486829-25.6-22.228292-5.619512 5.12 5.619512 12.362927-4.120976 14.985366-16.983415 4.120976-23.102439-2.122927-18.981463-18.107317-7.617561-0.999024-6.119024-11.48878-13.237073-13.48683-0.62439 5.619512-1.123902 11.863415-8.241952 5.12-4.120976-3.621463-6.119024-9.865366-9.240975-14.485853-5.619512-6.743415-12.362927-12.987317-8.741464-22.727805 0-17.482927-26.099512-23.227317-17.857561-44.456586-15.859512 6.119024-29.596098 11.363902-43.457561 16.483903-2.622439-8.741463 6.618537-6.618537 6.618537-11.863415 1.123902-3.121951 2.622439-6.119024 3.621463-9.365854 1.498537-1.498537 3.621463-3.121951 5.619513-4.620487 0.499512 0.499512 1.498537 0.499512 1.998048 0.999024-0.999024-1.498537-2.122927-3.121951-4.120975-4.620488 5.12-12.487805 16.858537-14.985366 27.098536-18.107317 27.722927-8.616585 55.320976-16.983415 83.043903-26.349268 9.740488-2.997073 21.978537-11.863415 30.72-0.999024 7.617561 9.865366-7.742439 15.98439-9.240976 25.225365 13.237073 1.123902 17.857561 15.609756 26.599024 22.228293 18.481951 14.485854 37.962927 27.473171 55.320976 42.333659h-0.499512c-5.12 0.499512-3.621463 14.485854-13.361951 6.618536-26.099512-20.604878-56.195122-36.589268-75.176586-65.560975-13.361951-8.866341-52.199024-6.119024-60.940487 5.12-3.621463 4.120976 1.498537 6.743415 5.619512 7.742439-0.999024 4.620488 6.119024 9.865366 0.999024 13.486829-9.740488 7.242927-11.863415-11.863415-23.601951-7.118049 11.738537 10.364878 15.859512 25.849756 31.719024 30.470244 4.120976-9.865366 9.240976-21.10439 19.480976-6.119024 29.596098 42.333659 74.177561 64.561951 117.260488 88.28878 10.739512 6.243902 11.239024 5.12 7.617561 17.607805-0.499512 1.998049-0.499512 3.621463-0.499513 5.619512 3.121951 6.618537 9.240976 2.622439 13.861464 4.120976 19.480976 11.363902 40.460488 16.983415 62.938536 16.983414-17.857561-7.118049-36.339512-13.986341-54.696585-21.10439 1.498537-14.485854 9.240976-7.242927 15.36-4.620488 70.056585 27.473171 142.360976 35.21561 216.538537 22.228293 7.242927-1.123902 13.361951-3.621463 13.361951-12.487805v-10.86439c1.123902-10.364878 6.743415-14.985366 13.361951-16.483903 1.498537 0 3.121951 0 4.620488-0.499512 4.620488 0 9.116098 0.499512 12.238049 1.498537 15.36 4.620488 21.479024-3.496585 27.598048-11.863415 8.241951-10.989268 19.480976-14.485854 31.719025-17.108292 19.980488-4.620488 40.460488-7.742439 56.32-22.727805 19.480976-17.982439 44.081951-7.617561 66.060488-11.363903 13.361951-1.998049 14.360976 2.622439 14.360975-11.863414 0-6.618537-2.997073-13.486829 9.240976-19.106342 18.981463-8.866341 34.840976-25.225366 51.699512-38.712195-12.737561-11.863415 7.742439-24.725854-7.118049-40.710244 13.861463 4.620488 14.360976 16.483902 23.601952 14.485854 0-11.988293 5.12-22.228293 11.239024-32.093659 11.738537 14.485854 11.239024-1.998049 15.859512-6.618536-18.357073-1.498537-3.496585-14.485854-7.617561-21.104391-7.118049-4.620488-16.858537-7.742439-6.618536-19.106341 2.497561-2.622439 1.498537-9.365854 2.497561-13.986342-9.740488-0.499512-3.621463-7.617561-5.12-11.863414 5.12 0.499512 11.863415-4.620488 13.361951 4.620488 9.240976 11.863415-2.497561 23.726829-0.499512 35.590244 5.12 5.12 6.119024 10.989268 5.619512 17.607804 33.717073-56.32 48.078049-117.76 48.078049-183.945365-2.622439 4.620488-5.12 9.865366-9.740488 9.865365-25.100488-0.499512-38.337561 7.742439-41.959025 32.593171-4.120976 26.84878-12.362927 52.698537-19.480975 78.548293-15.859512 28.971707-29.096585 58.318049-47.578537 86.290732-44.456585 66.684878-102.899512 113.639024-174.579512 145.607804-60.940488 27.722927-125.502439 35.964878-191.438049 31.843903-55.820488-3.621463-108.643902-20.729756-158.220488-47.079025-8.616585-4.620488-13.237073-10.86439-12.238048-20.604878h0.499512l-0.499512-0.499512c7.742439-5.12 13.861463 0 19.980487 3.121951 151.477073 73.303415 295.461463 61.44 428.581464-42.958048 74.177561-58.817561 116.885854-138.364878 134.743414-231.773659 3.121951-16.60878-1.998049-18.107317-16.359024-13.486829-65.436098 21.10439-130.497561 44.956098-196.558049 65.061463-130.622439 40.210732-258.622439 87.789268-389.12 127.500488-10.739512 3.121951-26.599024 13.486829-31.219512-1.998049-4.620488-14.485854 13.861463-16.483902 24.600976-20.105366 162.341463-52.199024 323.059512-108.394146 485.400975-160.093658 50.700488-16.109268 100.401951-35.715122 151.102439-52.199024 45.955122-14.985366 92.659512-30.595122 138.24-47.079025 8.741463-3.121951 17.857561-1.623415 26.599025-3.621463 1.123902-0.499512 2.122927-0.499512 3.121951-0.499512 0-2.997073 0-6.618537 4.620488-6.119025 4.620488 0.499512 4.620488 2.622439 3.621463 5.12 10.24-2.497561 15.859512-13.361951 26.099512-16.483902 9.240976-3.121951 1.998049-13.486829 0-19.605854-20.48-61.939512-40.96-124.378537-61.44-186.942439-1.998049-7.118049-5.12-13.861463-6.119024-21.603902-1.623415-8.741463 0.999024-14.985366 11.738537-13.48683 11.363902 3.621463 15.36 13.486829 18.481951 23.72683 14.236098 49.077073 31.094634 97.155122 47.453658 145.732682zM318.563902 869.650732c0 1.123902-0.999024 2.622439 0 2.497561 1.123902-0.499512 2.122927-0.499512 3.121952-0.499513-1.123902-0.499512-2.122927-1.498537-3.121952-2.49756v0.499512z m93.658537 67.18439l0.499512 0.499512c0-0.499512-0.499512-0.499512-0.499512-0.499512zM825.443902 911.98439c10.739512 0 17.857561 4.620488 21.978537-6.618536-7.118049 1.998049-12.737561 3.496585-21.978537 6.618536z m128.624391-49.576585c14.236098-2.622439 14.236098-2.622439 35.340487-27.972683-16.359024 5.244878-25.100488 16.733659-35.340487 27.972683z m68.43317-72.803903c6.243902-2.622439 9.740488-5.619512 11.239025-12.487804-8.117073 0.749268-12.238049 3.746341-11.239025 12.487804z m-1.498536-62.938536c-1.998049 0.499512-5.619512 0-6.119025-0.999025-2.497561-8.366829 2.622439-12.487805 9.740488-19.106341 1.498537 9.240976 6.618537 15.859512-3.621463 20.105366z m-108.394147 130.622439c-2.622439 1.498537-5.12-0.499512-4.620487-4.745366 0.999024-2.997073 1.498537-7.118049 6.119024-7.118049 1.498537 0 3.121951 1.623415 5.619512 3.621464-2.497561 3.621463-4.620488 6.743415-7.118049 8.241951z m-244.885853 92.409756c-2.497561 0-6.119024-0.499512-5.12-4.620488 0.999024-3.121951 3.496585-4.620488 6.618536-4.120975 2.122927 0 3.621463 1.623415 4.620488 2.622439-0.499512 4.120976-2.997073 6.119024-6.119024 6.119024zM304.202927 799.96878c0.499512 0.499512 1.623415 3.121951 1.498536 3.621464-2.497561 6.743415-8.117073 5.12-12.737561 4.120976 1.998049-5.12 5.12-8.741463 11.239025-7.74244z m-11.239025 8.241952c0-0.499512-0.499512-0.499512 0 0-0.499512-0.499512 0 0 0 0z m764.378537-214.790244c0 11.363902-5.619512 20.604878-13.361951 31.094634-1.623415-4.120976-3.621463-7.242927-3.121951-7.742439 6.243902-7.617561 2.122927-20.604878 13.361951-25.225366 0.499512-0.749268 3.121951 1.373659 3.121951 1.873171zM522.364878 161.217561l13.237073 13.486829c0.499512 0.499512 0.999024 0.499512 1.498537 0.499512l18.481951-3.621463c0.999024 0 1.998049 0.999024 1.498537 1.998049l-8.241952 16.983414v1.498537l9.240976 16.483902c0.499512 0.999024-0.499512 2.497561-1.498537 1.998049l-18.481951-2.622439c-0.499512 0-0.999024 0-1.498536 0.499512L523.863415 222.282927c-0.999024 0.999024-2.497561 0.499512-2.497561-0.999025l-3.121952-18.606829c0-0.499512-0.499512-0.999024-0.999024-0.999024l-16.858537-7.742439c-0.999024-0.499512-0.999024-1.998049 0-2.622439l16.359025-8.866342c0.499512 0 0.499512-0.499512 0.999024-0.999024l1.998049-18.606829c0-2.247805 1.498537-2.747317 2.622439-1.623415zM609.404878 156.097561l3.621463 11.863415c0 0.499512 0.499512 0.499512 0.499513 0.499512l11.738536 3.621463c0.999024 0.499512 0.999024 1.498537 0.499512 1.998049l-10.24 7.118049c-0.499512 0-0.499512 0.499512-0.499512 0.999024v12.487805c0 0.999024-0.999024 1.498537-1.498536 0.999024l-9.740488-7.742439c-0.499512 0-0.499512-0.499512-0.999025 0l-11.738536 3.621464c-0.999024 0.499512-1.498537-0.499512-0.999025-1.498537l4.120976-11.863414v-0.999025l-7.118049-9.865366c-0.499512-0.499512 0-1.498537 0.999025-1.498536l12.238048 0.499512c0.499512 0 0.499512 0 0.999025-0.499512l7.118049-9.865366c0-0.999024 0.999024-0.999024 0.999024 0.124878z m-130.622439 53.697561l1.498537 12.487805c0 0.499512 0 0.499512 0.499512 0.999024l10.739512 5.619512c0.499512 0.499512 0.499512 1.498537 0 1.998049l-11.239024 5.12c-0.499512 0-0.499512 0.499512-0.499513 0.499512l-1.998048 12.487805c0 0.999024-0.999024 0.999024-1.498537 0.499512l-8.241951-9.365853s-0.499512-0.499512-0.999025-0.499512l-12.238048 1.998048c-0.999024 0-1.498537-0.499512-0.999025-1.498536l6.119025-10.86439v-1.123903l-5.619513-10.86439c-0.499512-0.499512 0.499512-1.498537 0.999025-1.498537l12.238049 2.497561c0.499512 0 0.499512 0 0.999024-0.499512l8.741463-8.866341c0.499512-0.249756 1.498537 0.249756 1.498537 0.874146z m299.582439 636.753171l-13.361951-13.48683c-0.499512-0.499512-0.999024-0.499512-1.498537-0.499512l-18.481951 3.621464c-0.999024 0-1.998049-0.999024-1.498537-1.998049l8.241952-17.108293v-1.498536l-9.240976-16.483903c-0.499512-0.999024 0.499512-2.622439 1.498537-1.998049l18.481951 2.622439c0.499512 0 0.999024 0 1.498536-0.499512l12.737561-13.986341c0.999024-0.999024 2.622439-0.499512 2.622439 0.999024l3.121952 18.606829c0 0.499512 0.499512 0.999024 0.999024 0.999025l16.858537 7.742439c0.999024 0.499512 0.999024 1.998049 0 2.622439l-16.858537 8.741463c-0.499512 0-0.499512 0.499512-0.999024 0.999025l-1.998049 19.106341c0.499512 1.998049-1.123902 2.497561-2.122927 1.498537z m-88.039024 5.12l-3.621464-11.863415c0-0.499512-0.499512-0.499512-0.499512-0.499512l-11.738537-3.621464c-0.999024-0.499512-0.999024-1.498537-0.499512-1.998048l10.24-7.242927c0.499512 0 0.499512-0.499512 0.499512-0.999025v-12.487804c0-0.999024 0.999024-1.498537 1.498537-0.999025l9.740488 7.742439c0.499512 0 0.499512 0.499512 0.999024 0l11.738537-4.120975c0.999024-0.499512 1.498537 0.499512 1.498536 1.498536l-4.120975 11.863415v0.999024l7.118049 10.364878c0.499512 0.499512 0 1.498537-0.999025 1.498537l-12.238049-0.499512c-0.499512 0-0.499512 0-0.999024 0.499512l-7.118049 10.364878c0 0.499512-0.999024 0-1.498536-0.499512z m132.120975-54.197073l-1.498536-12.487805c0-0.499512 0-0.499512-0.499513-0.999025l-11.239024-5.619512c-0.499512-0.499512-0.499512-1.498537 0-1.998049l11.239024-5.12c0.499512 0 0.499512-0.499512 0.499513-0.499512l1.998048-12.487805c0-0.999024 0.999024-0.999024 1.498537-0.499512l8.741463 9.365854s0.499512 0.499512 0.999025 0.499512l12.238049-1.998049c0.999024 0 1.498537 0.499512 0.999024 1.498537l-6.119024 10.86439v0.999024l5.619512 11.363903c0.499512 0.499512-0.499512 1.498537-0.999025 1.498536l-12.238048-2.622439c-0.499512 0-0.499512 0-0.999025 0.499512l-8.741463 8.741464c-0.499512 0-1.498537-0.499512-1.498537-0.999024zM261.619512 639.750244l72.679025-23.601951 19.356097 59.441951-72.679024 23.601951-19.356098-59.441951z m71.180488 25.849756l-9.365854-28.971707-41.209756 13.361951 9.365854 28.971707 41.209756-13.361951zM162.341463 605.533659l26.723903-8.741464-7.742439-23.851707 16.733658-5.494634 7.742439 23.851707 26.349269-8.616585 4.995122 15.484878-26.349269 8.616585 7.617561 23.601951 25.225366-8.241951 5.12 15.859512-21.354146 6.993171 7.242927 22.353171 22.35317-7.242927 5.12 15.859512-22.35317 7.242927 9.240975 28.347317c0.749268 0 1.373659 0 2.247805 0.124878 11.863415 0.249756 37.338537-5.994146 76.550244-18.731707 16.733659-5.494634 29.221463-9.865366 37.088781-13.112195l2.622439 18.357073-30.595122 9.990244c-47.203902 15.36-77.799024 22.228293-91.53561 20.979512-10.614634-1.24878-20.979512-5.619512-31.34439-13.112195 1.24878 11.863415 1.373659 23.227317 0.999024 34.341463l-16.359024-7.118049c0.499512-23.601951-2.872195-48.452683-10.364878-74.552195l15.484878-2.997073c2.747317 9.740488 5.12 18.981463 6.868292 27.972683 5.994146 5.369756 12.113171 9.740488 18.357073 12.612683l-18.107317-55.945366-32.59317 10.614634-5.12-15.859512 28.347317-9.240976-7.617561-23.601951-26.723903 8.741464-4.870244-15.484878z m98.528781-31.843903l-23.601951 7.617561-5.244878-16.234146 80.171707-26.099512c10.489756 32.842927 14.985366 53.073171 13.736585 60.565853-1.373659 7.617561-6.243902 12.862439-14.735609 15.609756-3.87122 1.24878-8.616585 2.372683-14.360976 3.621464l-9.240976-13.986342c6.119024-1.373659 10.989268-2.497561 14.985366-3.496585 4.370732-1.623415 6.243902-4.620488 5.994147-9.116098-0.124878-4.245854-2.747317-14.860488-7.992196-31.594146l-23.601951 7.617561c1.623415 13.112195 1.748293 24.101463 0.249756 32.718049-2.122927 10.86439-7.242927 21.479024-14.860488 31.96878l-16.109268-10.614634c6.743415-8.241951 11.239024-16.733659 13.486829-24.97561 1.623415-6.493659 2.122927-14.360976 1.123903-23.601951z m137.116097-56.819512l44.83122 138.115122-16.983415 5.494634-3.746341-11.48878-22.103415 7.242926 5.12 15.859513-17.108292 5.619512-46.329757-142.610732 56.32-18.232195z m-3.121951 123.254634l22.103415-7.242927-12.987317-40.085853-22.103415 7.242926 12.987317 40.085854z m-18.357073-56.444878l22.103415-7.242927-12.362927-38.212683-22.103415 7.242927 12.362927 38.212683z m67.309268-20.105366c16.858537 13.486829 30.345366 25.6 40.460488 36.589268l-11.239024 14.860488c-10.86439-11.48878-24.600976-24.226341-40.835122-37.71317l11.613658-13.736586z m72.679025 86.915122l-32.593171 10.614634-9.365854-15.734634c10.86439-2.872195 21.10439-5.869268 30.969756-8.991219 4.370732-1.498537 5.869268-4.49561 4.245854-9.365854l-31.219512-95.906342-61.44 19.980488-5.494634-16.733658 61.44-19.980488-10.115122-30.969756 17.857561-5.869268 10.115122 30.969756 20.604878-6.743415 5.494634 16.733659-20.604878 6.743414 32.593171 100.277073c4.120976 12.612683-0.124878 20.979512-12.487805 24.97561z m75.925853-210.044878l17.732683-5.74439 7.742439 23.851707 61.814635-20.105366 5.494634 16.983415-61.814634 20.105366 9.240975 28.597073 71.555122-23.227317 5.494634 16.983414-56.94439 18.481952c19.23122 17.607805 45.955122 30.345366 80.171707 38.212683l-7.242927 19.855609c-36.839024-12.487805-65.685854-30.220488-86.790243-53.572683l-0.749269 0.249757 26.848781 82.669268-17.732683 5.74439-26.848781-82.669268-0.749268 0.249756c-3.371707 34.091707-16.983415 65.810732-40.460488 95.157073l-15.484878-13.112195c22.727805-24.101463 36.714146-50.076098 42.083903-77.549268l-56.944391 18.481951-5.494634-16.983415 71.555122-23.227317-9.240975-28.597073-60.440976 19.605854-5.494634-16.983415 60.440975-19.605854-7.742439-23.851707z m143.235122-47.32878l18.107317-2.622439c1.24878 8.99122 2.247805 17.482927 2.872196 25.6l40.585365-13.237074 5.12 15.734635c5.869268 33.217561 5.369756 62.439024-1.24878 88.28878 5.494634 4.370732 10.739512 7.367805 15.734634 8.99122 16.858537 5.369756 40.210732 3.371707 70.306342-5.869269 10.489756-3.371707 20.979512-7.492683 31.843902-11.738536l2.372683 19.356097-20.48 6.618537c-38.712195 12.612683-68.682927 15.235122-89.787317 7.742439-5.369756-1.998049-10.489756-4.49561-15.484878-7.992195-6.743415 17.108293-16.483902 32.218537-28.971708 45.705366L751.765854 556.081951c12.612683-13.486829 21.853659-28.721951 27.722926-45.705366-8.741463-8.741463-17.607805-19.605854-26.474146-32.59317-1.998049 8.866341-4.620488 17.233171-7.617561 24.725853l-16.858536-10.989268c10.489756-27.348293 12.862439-60.066341 7.118048-98.403902z m20.729756 60.690731c9.990244 15.484878 19.23122 27.972683 28.222439 37.713171 4.120976-20.105366 4.245854-42.20878 0.874147-66.310244l-28.222439 9.116098c0 6.868293-0.374634 13.237073-0.874147 19.480975z m52.948293-83.668292l17.482927-5.744391 15.110244 46.704391c18.232195 5.869268 37.213659 12.987317 57.069268 21.354146l-5.369756 19.106341c-18.232195-9.61561-33.467317-17.108293-45.705366-22.103414l23.227317 71.555122-17.482927 5.74439-44.331707-136.616585z m145.482927-41.334635l93.283902-30.345365 28.597074 88.163902-37.838049 12.238049 5.994146 18.481951 40.210732-13.112195 5.244878 16.234146-40.085854 13.237073 6.243903 19.23122 46.70439-15.110244 5.494634 16.733659-111.640976 36.214634-5.494634-16.733659 47.578537-15.484878-6.243903-19.231219-40.335609 13.112195-5.244878-16.234147 40.335609-13.112195-5.994146-18.481951-38.212683 12.362927-28.597073-88.163903z m100.152195 47.828293l-6.868293-20.979512-20.979512 6.868293 6.868293 20.979512 20.979512-6.868293z m-38.337561 12.487805l-6.868293-20.979512-21.354146 6.993171 6.868293 20.979512 21.354146-6.993171z m-33.217561-29.221463l21.354146-6.993171-6.868292-20.979512-21.354147 6.99317 6.868293 20.979513z m31.968781-33.592196l6.868292 20.979513 20.979513-6.868293-6.868293-20.979512-20.979512 6.868292z m-104.522927 83.918049l18.232195-5.994146-12.862439-39.461464-20.979512 6.868293-5.369756-16.60878 59.566829-19.356098 5.369756 16.608781-20.854634 6.743414 12.862439 39.461464 18.606829-5.994147 5.494634 16.733659-18.606829 5.994146 11.988293 36.839025c5.494634-4.245854 10.86439-8.491707 15.98439-12.987317l5.494634 16.983414c-14.860488 12.113171-30.969756 23.726829-48.952195 34.59122l-9.740488-15.36c7.367805-3.746341 14.360976-7.867317 21.10439-12.113171l-13.736585-42.208781-18.232195 5.994147-5.369756-16.733659z" fill="#FF0101" fill-opacity=".898" opacity=".8" p-id="7481"></path></svg>
          <svg v-if="item.overtime === 2" t="1721640480312" class="icon work-order-overtime" width="36" height="36" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="13285"><path d="M896 0a128 128 0 0 1 128 128v768a128 128 0 0 1-128 128H128a128 128 0 0 1-128-128V128a128 128 0 0 1 128-128h768zM205.568 336.192h-40.768v57.792H99.84v37.632h64.96v57.344H95.808v38.528h79.296v135.744a175.168 175.168 0 0 1-31.36-40.768c2.688-21.056 4.032-43.008 4.928-66.304l-36.288-4.48a581.376 581.376 0 0 1-30.464 171.136l30.912 27.328c8.96-24.192 16.576-49.28 22.4-76.16 17.472 23.744 37.184 40.768 59.584 51.072 29.12 12.544 101.248 19.264 215.936 19.264H485.12l7.168-42.112a1437.44 1437.44 0 0 1-90.944 2.24c-94.976 0-155.456-4.48-181.44-13.44a21.824 21.824 0 0 0-4.928-1.792V620.224h54.208v-38.528h-54.208v-54.208h51.968V488.96h-61.376v-57.344h64.064v-37.632H205.568v-57.792z m685.44 4.032h-43.456v75.264h-149.184v40.768h149.184v232.96c0 11.648-5.376 17.472-16.128 17.472-23.744 0-48.384-0.896-74.368-2.24l9.408 41.216h79.296c30.016 0 45.248-15.232 45.248-45.696V456.256h50.176v-40.768h-50.176V340.224z m-210.112 27.328H544.256v346.304h41.664v-38.528h53.76v27.776h41.216V367.552zM469.888 540.032H293.376v144.256h176.512V540.032z m-38.528 37.184v70.336H331.456V577.216H431.36z m316.736-74.368l-35.392 21.952c25.984 41.216 47.04 78.848 62.72 112l35.392-24.64c-14.336-31.36-35.392-67.648-62.72-109.312z m-108.416 35.84v97.216h-53.76V538.688h53.76z m-163.072-183.68H281.728v39.424h57.344c-4.48 21.056-11.2 38.08-19.264 51.52-10.752 16.576-26.88 31.808-47.488 45.248l27.776 34.944c24.192-17.472 43.008-37.184 55.552-59.584 9.408-17.92 17.024-42.112 22.848-72.128h57.344c-0.448 40.768-2.24 65.856-4.928 75.264-2.688 9.856-8.96 15.232-19.712 15.68-9.408-0.896-21.056-1.792-35.392-3.136l10.304 37.184c13.44 1.344 24.64 2.24 34.048 2.24 20.608 0 34.944-8.064 43.456-23.744 8.064-15.68 12.544-63.168 12.992-142.912z m163.072 51.072v92.736h-53.76V406.08h53.76z" fill="#ED2525" fill-opacity="1" opacity="1" p-id="13286"></path></svg>
          <svg v-else-if="item.overtime === 1 "t="1721902978015" class="icon work-order-overtime" width="36" height="36" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="5608"><path d="M512.2 141.8c-203.1 0-367.8 164.7-367.8 367.8s164.7 367.8 367.8 367.8c203.1 0 367.8-164.7 367.8-367.8S715.3 141.8 512.2 141.8z m162.4 494.3c-9.1 12.1-26.5 14.6-38.6 5.5l-143.9-108c-3.6-2.7-6.4-6.2-8.3-10.1-2.3-4-3.7-8.7-3.7-13.6V295.4c0-15.2 12.4-27.6 27.6-27.6 15.2 0 27.6 12.4 27.6 27.6V497L669 597.4c12.3 9.1 14.8 26.5 5.6 38.7zM122.5 277.1l-26.9-26.9c-3.9-3.9-3.9-10.3 0-14.1l129.7-129.7c3.9-3.9 10.3-3.9 14.1 0l26.9 26.9c3.9 3.9 3.9 10.3 0 14.1L136.7 277.1c-3.9 3.9-10.3 3.9-14.2 0zM901.9 277.1l26.9-26.9c3.9-3.9 3.9-10.3 0-14.1L799.1 106.3c-3.9-3.9-10.3-3.9-14.1 0l-27 27c-3.9 3.9-3.9 10.3 0 14.1l129.7 129.7c3.9 3.9 10.3 3.9 14.2 0z" fill="#d81e06" p-id="5609"></path><path d="M201.9 919.2L175 892.3c-3.9-3.9-3.9-10.3 0-14.1l129.7-129.7c3.9-3.9 10.3-3.9 14.1 0l26.9 26.9c3.9 3.9 3.9 10.3 0 14.1L216.1 919.2c-3.9 3.9-10.3 3.9-14.2 0zM821.5 919.2l26.9-26.9c3.9-3.9 3.9-10.3 0-14.1L718.7 748.5c-3.9-3.9-10.3-3.9-14.1 0l-26.9 26.9c-3.9 3.9-3.9 10.3 0 14.1l129.7 129.7c3.8 3.9 10.2 3.9 14.1 0z" fill="#d81e06" p-id="5610"></path></svg>
 
          <el-carousel trigger="click" height="150px" :autoplay="false" indicator-position="none">
            <el-carousel-item>
              <div class="card">
                <div class="card-left">
                  <el-image
                    v-if="item.imgList && item.imgList.length > 0"
                    :preview-src-list="item.imgList"
                    fit="cover" :src="item.imgList[0]"
                    class="image"
                    style="display: flex;justify-content: center;align-items: center;"
                  >
                    <div slot="error" class="image-slot">
                      <i class="el-icon-picture-outline">加载失败</i>
                    </div>
                  </el-image>
                  <el-image class="image" style="display: flex;justify-content: center;align-items: center;" v-else>
                    <div slot="error" class="image-slot">
                      <i class="el-icon-picture-outline" style="color: gray;font-size: 14px">未取到图片</i>
                    </div>
                  </el-image>
                </div>
                <div class="work-order">
                  <el-row class="work-order-item">
                    <el-col :span="24" class="time">工单号:{{ item.workOrderNo }}</el-col>
                  </el-row>
                  <el-row class="work-order-item">
                    <el-col :span="24" class="time">故障时间:{{ item.createTime }}</el-col>
                  </el-row>
                  <el-row class="work-order-item">
                    <el-col class="time" :span="24"><div>国标码:{{ item.serialNumber }}</div><div>{{ item.source }}</div></el-col>
                  </el-row>
                  <el-row style="position: absolute;bottom: 10px">
                    <el-button
                      size="mini"
                      type="text"
                      class="my-button"
                      @click="handleAuditing(item)"
                      v-hasPermi="['work:order:audit']"
                      v-show="item.status === 'YW_HANDLE'"
                    >审核
                    </el-button>
                    <el-button
                      class="my-button"
                      size="mini"
                      type="text"
                      v-hasPermi="['work:order:condition:add']"
                      v-show="item.status !== 'AUDITING_SUCCESS'"
                      @click="handleYwCondition(item)"
                    >处理上报
                    </el-button>
                    <el-button
                      class="my-button"
                      size="mini"
                      type="text"
                      @click="handleFlow(item)"
                    >过程图
                    </el-button>
                    <el-button
                      class="my-button"
                      size="mini"
                      type="text"
                      @click="handleReport(item)"
                      v-hasPermi="['system:report:add']"
                      v-show="item.status !== 'AUDITING_SUCCESS'"
                    >事后报备
                    </el-button>
                    <el-button
                      class="my-button"
                      size="mini"
                      type="text"
                      @click="handleDetail(item)"
                      v-hasPermi="['system:workorder:detail']"
                    >详情
                    </el-button>
                  </el-row>
                </div>
              </div>
            </el-carousel-item>
            <el-carousel-item>
              <div class="moreInfo">
                <el-descriptions style="width: 100%" title="" border :column="2" size="medium">
                  <el-descriptions-item label="负责单位">{{ item.unitName }}</el-descriptions-item>
                  <el-descriptions-item label="负责人">张一山</el-descriptions-item>
                  <el-descriptions-item label="联系电话">15115115142</el-descriptions-item>
                </el-descriptions>
              </div>
            </el-carousel-item>
          </el-carousel>
        </div>
 
      </el-col>
    </el-row>
    <el-empty v-if="empty" description="暂无数据"></el-empty>
 
    <pagination
      v-show="total>0"
      :total="total"
      :page.sync="queryParams.pageNum"
      :limit.sync="queryParams.pageSize"
      @pagination="getList"
    />
 
    <!-- 事后报备 -->
    <el-dialog title="事后报备" :visible.sync="reportOpen" width="600px" append-to-body>
      <el-form ref="reportForm" :model="reportForm" :rules="reportFormRules" label-width="80px">
        <el-form-item label="点位" prop="source">
          <el-input v-model="reportForm.source" disabled/>
        </el-form-item>
        <el-form-item label="报备类型">
          <el-input v-model="reportForm.reportType" disabled/>
        </el-form-item>
        <el-form-item label="故障类型" prop="errorTypeList">
          <el-select v-model="reportForm.errorTypeList" multiple>
            <el-option v-for="dict in dict.type.report_error_type" :value="dict.value" :key="dict.value" :label="dict.label" />
          </el-select>
        </el-form-item>
        <el-form-item label="报备时间" prop="daterangeCreateTime">
          <el-date-picker v-model="reportForm.daterangeCreateTime" type="datetimerange" value-format="yyyy-MM-dd HH:mm:ss"
                          range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
          ></el-date-picker>
        </el-form-item>
        <el-form-item label="报备内容" prop="reportContent">
          <editor v-model="reportForm.reportContent" :min-height="192"/>
        </el-form-item>
        <el-form-item label="报备材料" prop="reportMaterials">
          <file-upload v-model="reportForm.reportMaterials"/>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="reportOpen = false">取 消</el-button>
        <el-button type="primary" @click="submitReportForm">提交审核</el-button>
      </div>
    </el-dialog>
 
    <WorkOrderAuditing :auditingOpen="auditingOpen" :dataForm="auditingForm" :ywConditions="ywConditions" @close="closeAuditing"/>
<!--    <el-dialog title="工单审核" :visible.sync="auditingOpen" width="1000px" append-to-body>-->
<!--      <el-row :gutter="20">-->
<!--        <el-col :span="10">-->
<!--          <el-form ref="auditingForm" :model="auditingForm" :rules="auditingRules" label-width="80px">-->
<!--            <el-form-item label="工单号" prop="workOrderNo">-->
<!--              <el-input v-model="auditingForm.workOrderNo" disabled/>-->
<!--            </el-form-item>-->
<!--            <el-form-item label="运维单位" prop="unitName">-->
<!--              <el-input v-model="auditingForm.unitName" disabled/>-->
<!--            </el-form-item>-->
<!--            <el-form-item label="审核结果" prop="auditingResult">-->
<!--              <el-radio v-model="auditingForm.auditingResult" label="AUDITING_SUCCESS">通过</el-radio>-->
<!--              <el-radio v-model="auditingForm.auditingResult" label="AUDITING_FAIL">驳回</el-radio>-->
<!--            </el-form-item>-->
<!--            <el-form-item label="审核备注" prop="auditingRemark">-->
<!--              <el-input v-model="auditingForm.auditingRemark" type="textarea" maxlength="30" show-word-limit/>-->
<!--            </el-form-item>-->
<!--          </el-form>-->
<!--        </el-col>-->
<!--        <el-col :span="14" style="max-height: 500px; overflow-y: auto">-->
<!--          <el-timeline v-if="ywConditions && ywConditions.length > 0">-->
<!--            <el-timeline-item v-for="(condition, index) in ywConditions" :key="index"-->
<!--                              :timestamp="condition.commitUserName + '___' + condition.createTime" placement="top"-->
<!--            >-->
<!--              <el-card>-->
<!--                <div v-html="condition.ywCondition"></div>-->
<!--                <el-link type="primary"-->
<!--                         v-for="item in condition.ywProofMaterials != null ? condition.ywProofMaterials.split(',') : condition.ywProofMaterials"-->
<!--                         :underline="false" :key="item.id" @click="handleDownload(item)"-->
<!--                >{{ item.substring(item.lastIndexOf('/') + 1) }}-->
<!--                </el-link>-->
<!--              </el-card>-->
<!--            </el-timeline-item>-->
<!--          </el-timeline>-->
<!--          <el-empty v-else description="没有处理记录"></el-empty>-->
<!--        </el-col>-->
<!--      </el-row>-->
 
<!--      <div slot="footer" class="dialog-footer">-->
<!--        <el-button @click="cancelAuditing">取 消</el-button>-->
<!--        <el-button type="primary" @click="submitAuditing">审 核</el-button>-->
<!--      </div>-->
<!--    </el-dialog>-->
 
    <el-dialog title="运维情况记录" :visible.sync="ywConditionOpen" width="500px" append-to-body>
      <el-form ref="form" :model="form" :rules="ywConditionRules" label-width="80px">
        <el-form-item label="工单号" prop="workOrderNo">
          <el-input v-model="ywConditionForm.workOrderNo" disabled/>
        </el-form-item>
        <el-form-item label="运维单位" prop="unitName">
          <el-input v-model="ywConditionForm.unitName" disabled/>
        </el-form-item>
        <el-form-item label="现场情况" prop="ywCondition">
          <editor v-model="form.ywCondition" :min-height="192"/>
        </el-form-item>
        <el-form-item label="佐证材料" prop="ywProofMaterials">
          <file-upload v-model="form.ywProofMaterials"/>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="cancelYwCondition">取 消</el-button>
        <el-button type="primary" @click="submitYwCondition">提 交</el-button>
      </div>
    </el-dialog>
 
    <el-dialog title="工单批量审核" :visible.sync="batchAuditingVisible" width="500px" append-to-body>
      <el-form ref="batchAuditingWorkOrder" :model="batchAuditingWorkOrder" label-width="80px"
               :rules="batchAuditingRules"
      >
        <el-form-item label="故障类型" prop="errorType">
          <el-select v-model="batchAuditingWorkOrder.errorTypes" multiple placeholder="故障类型">
            <el-option v-for="dict in dict.type.error_type" :value="dict.value" :key="dict.value" :label="dict.label" />
          </el-select>
        </el-form-item>
        <el-form-item label="审核说明" prop="auditingRemark">
          <el-input v-model="batchAuditingWorkOrder.auditingRemark" type="textarea" maxlength="30" show-word-limit/>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button type="primary" @click="batchAuditing('AUDITING_SUCCESS')" size="small">通 过</el-button>
        <el-button type="danger" @click="batchAuditing('AUDITING_FAIL')" size="small">驳 回</el-button>
      </div>
    </el-dialog>
 
 
    <!-- 过程图 -->
    <el-dialog title="过程图" :visible.sync="flowOpen" width="1200px" append-to-body>
      <div>
        <el-steps :active="ywAuditingList.length != 0 ? 3 : ywHandleList.length != 0 ? 2 : 1" :space="500">
          <el-step :title="getTitle1()">
            <template slot="description">
              <div>
                <div class="row flow-item-x">
                  <div class="flex1">故障点位:</div>
                  <div class="flex2"><el-tag type="danger" size="small">{{ flowForm.source }}</el-tag></div>
                </div>
                <div class="row flow-item-x">
                  <div class="flex1">故障类型:</div>
                  <div class="flex2">{{ flowForm.errorType }}</div>
                </div>
                <div class="row flow-item-x">
                  <div class="flex1">运维单位:</div>
                  <div class="flex2">{{ flowForm.unitName }}</div>
                </div>
                <div class="row flow-item-x">
                  <div class="flex1">创建时间:</div>
                  <div class="flex2">{{ flowForm.createTime }}</div>
                </div>
                <div class="row flow-item-x" v-if="flowForm.processingPeriod">
                  <div class="flex1">处理期限:</div>
                  <div class="flex2"><el-tag type="danger" size="small">{{ flowForm.processingPeriod }}</el-tag></div>
                </div>
              </div>
            </template>
          </el-step>
          <el-step :title="getTitle2()">
            <template slot="description">
              <div style="max-height: 450px;overflow-y: scroll">
                <div v-for="(item, index) in ywHandleList" :key="index">
                  <div v-if="item.sysMsg === true" class="row flow-item-x">
                    <div class="cflex1">系统消息:</div>
                    <div class="cflex2">{{item.ywCondition}}</div>
                    <div class="cflex3">{{item.createTime}}</div>
                  </div>
                  <div v-else style="width: 100%">
                    <div style="display: flex; flex-direction: row;width: 100%;position: relative">
                      <div class="cflex1">运维情况:</div>
                      <div class="cflex2"><el-link style="font-size: 14px" type="danger" @click="openDrawer(item)">点击查看</el-link></div>
                      <div class="cflex3">{{item.createTime}}</div>
                    </div>
                    <el-drawer
                      title="运维情况"
                      :visible.sync="drawer"
                      direction="rtl"
                      :modal="false"
                      >
                      <div style="padding: 20px;font-size: 14px">
                        <div class="row flow-item-x">
                          <div class="flex1"><p>上报内容:</p></div>
                          <div class="flex2">
                            <div v-html="ywData.content"></div>
                          </div>
                        </div>
                        <div class="row flow-item-x">
                          <div class="flex1"><p>佐证材料:</p></div>
                          <div class="flex2">
                            <p>
                              <el-link type="primary"
                                       v-for="item in ywData.fileList != null ? ywData.fileList.split(',') : ywData.fileList"
                                       :underline="false" :key="item.id" @click="handleDownload(item)"
                              >{{ item.substring(item.lastIndexOf('/') + 1) }}
                              </el-link>
                            </p>
                          </div>
 
                        </div>
                      </div>
                    </el-drawer>
                      <!-- <div class="flow-item-x">
                        <el-tag size="small" v-for="file in item.ywProofMaterials != null ? item.ywProofMaterials.split(',') : item.ywProofMaterials" :key="file" @click="handleDownload(file)">{{ file.substring(file.lastIndexOf("/") + 1) }}</el-tag>
                      </div> -->
                  </div>
 
                </div>
              </div>
            </template>
          </el-step>
          <el-step title="审核结果">
            <template slot="description">
              <div style="max-height: 450px;overflow-y: scroll">
                <div v-for="(item, index) in ywAuditingList" :key="index">
                  <div class="row flow-item-x">
                    <div class="cflex1">
                      审核结果:
                    </div>
                    <div class="cflex2">
                      <el-tag :type="item.result == '审核通过' ? 'success' : 'danger'" size="small">{{
                          item.result
                        }}
                      </el-tag>
                    </div>
                    <div class="cflex3">
                      {{ item.createTime }}
                    </div>
                  </div>
                  <div class="row flow-item-x">
                    <div class="flex1">审核说明:</div>
                    <div class="flex2">
                      <span v-if="item.remark" v-html="item.remark"></span>
                      <span v-else>无</span>
                    </div>
                  </div>
                </div>
              </div>
            </template>
          </el-step>
        </el-steps>
      </div>
    </el-dialog>
 
  </div>
</template>
<style scoped>
.flex1 {
  flex: 2;
}
.flex2 {
  flex: 9;
}
.cflex1 {
  flex: 2;
}
.cflex2 {
  flex: 5;
  flex-wrap: wrap;
}
.cflex3 {
  flex: 4;
}
.row {
  display: flex;
  flex-direction: row;
}
.flow-item-x {
  margin: 5px 0;
}
 
.y-item {
  margin-bottom: 8px;
  padding: 0 3px;
  background-color: #d9d9d9;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
 
.y-item-2 {
  flex: 1;
}
 
.y-item-1 {
  flex: 2;
}
</style>
<script>
import {
  listWorkOrder,
  getWorkOrder,
  delWorkOrder,
  addWorkOrder,
  updateWorkOrder,
  auditing,
  batchAuditing,
  ywCondition,
  getYwCondition,
  process
} from '@/api/platform/work-order'
import { addReport } from '@/api/platform/report'
import WorkOrderAuditing from "@/components/WorkOrder/WorkOrderAuditing";
 
export default {
  name: 'Work-order',
  dicts: ['error_type', 'report_error_type'],
  components: {WorkOrderAuditing},
  data() {
    return {
      drawer: false,
      empty: false,
      openShowCurrent: null,
      ywConditions: [],
      batchAuditingVisible: false,
      batchAuditingWorkOrder: {
        errorTypes: [],
        auditingRemark: '',
        auditingResult: ''
      },
      ywHandleList: [],
      ywAuditingList: [],
      beforeReportMsg: '',
      afterReportMsg: '',
      reportFormRules: {
        reportContent: [
          { required: true, message: '报备内容不能为空', trigger: 'blur' }
        ],
        reportMaterials: [
          { required: true, message: '报备材料不能为空', trigger: 'blur' }
        ],
        errorTypeList: [
          { required: true, message: '请选择故障类型', trigger: 'change' }
        ],
        daterangeCreateTime: [
          { required: true, message: '请选择报备时间', trigger: 'change' }
        ],
      },
      reportOpen: false,
      reportForm: {
        reportType: '事后报备',
        pointId: '',
        errorTypeList: [],
        reportContent: '',
        reportMaterials: '',
        daterangeCreateTime: [],
        beginCreateTime: null,
        endCreateTime: null
      },
      // 过程图
      flowOpen: false,
      flowForm: {},
      certificateList: [],
      pictureList: [],
      // 遮罩层
      loading: true,
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 运维工单表格数据
      workOrderList: [],
      // 弹出层标题
      title: '',
      // 是否显示弹出层
      open: false,
      // 运维检测结果时间范围
      daterangeYwHandleTime: [],
      // 查询参数
      queryParams: {
        errorTypeList: [],
        pageNum: 1,
        pageSize: 10,
        unitId: null,
        keyword: null,
        status: ''
      },
      // 表单参数
      form: {},
      // 审核表单
      auditingForm: {},
      auditingOpen: false,
      // 运维情况表单
      ywConditionForm: {},
      ywConditionOpen: false,
      // 运维结果表单
      ywResultForm: {},
      ywResultOpen: false,
      // 运维检测结果
      checkResultForm: {},
      checkResultOpen: false,
      // 审核表单校验
      auditingRules: {
        auditingResult: [
          { required: true, message: '审核结果不能为空', trigger: 'blur' }
        ]
      },
      // 运维情况校验
      ywConditionRules: {
        ywCondition: [
          { required: true, message: '运维情况不能为空', trigger: 'blur' }
        ]
      },
      // 运维结果校验
      ywResultRules: {
        ywResult: [
          { required: true, message: '运维结果不能为空', trigger: 'blur' }
        ]
      },
      // 运维检测结果校验
      checkResultRules: {
        ywCheckResult: [
          { required: true, message: '运维检测结果不能为空', trigger: 'blur' }
        ]
      },
      // 批量审核校验
      batchAuditingRules: {
        errorTypes: [
          { required: true, message: '请选择故障类型', trigger: 'change' }
        ]
      },
      // 运维情况
      ywData: {
        content: '',
        fileList: 'process.env.VUE_APP_BASE_API'
      }
    }
  },
  created() {
    this.getList()
  },
  methods: {
    closeAuditing() {
      this.auditingOpen = false
    },
    getTitle1() {
      return '产生工单' + (this.beforeReportMsg ? '(' + this.beforeReportMsg + ')' : '')
    },
    getTitle2() {
      return '运维处理' + (this.afterReportMsg ? '(' + this.afterReportMsg + ')' : '')
    },
    openDrawer(item) {
      this.ywData = {
        content: '',
        fileList: ''
      }
      this.ywData.content = item.ywCondition
      this.ywData.fileList = item.ywProofMaterials
      this.drawer = true
    },
    // 批量审核
    batchAuditing(result) {
      this.batchAuditingWorkOrder.auditingResult = result
      this.$refs['batchAuditingWorkOrder'].validate(valid => {
        if (valid) {
          batchAuditing(this.batchAuditingWorkOrder).then(res => {
            this.batchAuditingWorkOrder = {}
            this.batchAuditingVisible = false
            this.$modal.msgSuccess('操作成功')
            this.getList()
          })
        }
      })
    },
    /** 下载按钮操作 */
    handleDownload(data) {
      this.$download.resource(data)
    },
    // 报备
    submitReportForm() {
      this.$refs['reportForm'].validate(valid => {
        if (valid) {
          if (this.reportForm.daterangeCreateTime && this.reportForm.daterangeCreateTime.length > 0) {
            this.reportForm.beginCreateTime = this.reportForm.daterangeCreateTime[0]
            this.reportForm.endCreateTime = this.reportForm.daterangeCreateTime[1]
          }
          addReport(this.reportForm).then(response => {
            this.$modal.msgSuccess('成功提交报备')
            this.reportOpen = false
            this.getList()
          })
        }
      })
    },
    // 详情
    handleDetail(item) {
      this.$router.push({name: '/work-order-center/maintenance/detail', query: {workOrderNo: item.workOrderNo}})
    },
    // 事后报备按钮
    handleReport(row) {
      this.reportForm.pointId = row.serialNumber
      this.reportForm.source = row.source
      this.reportOpen = true
    },
    // 审核按钮
    handleAuditing(row) {
      this.auditingForm = row
      getYwCondition(row.workOrderNo).then(response => {
        this.ywConditions = response.data
        this.auditingOpen = true
      })
    },
    // 运维情况按钮
    handleYwCondition(row) {
      this.form = {}
      this.ywConditionForm = row
      this.ywConditionOpen = true
      this.form.id = row.id
    },
    // 运维结果按钮
    handleYwResult(row) {
      this.ywResultForm = row
      this.ywResultOpen = true
    },
    // 运维检测结果按钮
    handleCheckResult(row) {
      this.checkResultForm = row
      this.checkResultOpen = true
    },
    // 过程图查看
    handleFlow(row) {
      this.flowForm = row
      process(row.workOrderNo).then(response => {
        if (response.data) {
          this.ywAuditingList = response.data.auditingList
          this.ywHandleList = response.data.ywList
          this.afterReportMsg = response.data.afterReportMsg
          this.beforeReportMsg = response.data.beforeReportMsg
          this.flowOpen = true
        }
      })
    },
    // 提交审核
    submitAuditing() {
      this.$refs['auditingForm'].validate(valid => {
        if (valid) {
          auditing(this.auditingForm).then(res => {
            this.auditingOpen = false
            this.$modal.msgSuccess('操作成功')
            this.getList()
          })
        }
      })
    },
    // 取消审核
    cancelAuditing() {
      this.auditingForm = {}
      this.auditingOpen = false
    },
    pictureRemove(file, fileList) {
      this.form.picture = null,
 
        this.pictureList = this.pictureList.filter(item => item.name !== file.name)
    },
    certificateRemove(file, fileList) {
      this.form.certificate = null,
 
        this.certificateList = this.certificateList.filter(item => item.name !== file.name)
    },
    pictureUploadSuccess(response, file, fileList) {
      this.form.picture = response.fileName,
        this.pictureList.push({
          name: response.originalFilename,
          url: response.url,
          fileName: response.fileName
        })
    },
    certificateUploadSuccess(response, file, fileList) {
      this.form.certificate = response.fileName,
        this.certificateList.push({
          name: response.originalFilename,
          url: response.url,
          fileName: response.fileName
        })
    },
    // 提交运维情况
    submitYwCondition() {
      this.$refs['form'].validate(valid => {
        if (valid) {
          ywCondition(this.form).then(res => {
            this.ywConditionOpen = false
            this.$modal.msgSuccess('操作成功')
            this.getList()
          })
        }
      })
    },
    cancelYwCondition() {
      this.ywConditionForm = {}
      this.ywConditionOpen = false
    },
    // 提交运维结果
    submitYwResult() {
      // todo
    },
    cancelYwResult() {
      this.ywResultForm = {}
      this.ywResultOpen = false
    },
    // 提交检测结果
    submitCheckResult() {
      // todo
    },
    cancelCheckResult() {
      this.checkResultForm = {}
      this.checkResultOpen = false
    },
    /** 查询运维工单列表 */
    getList() {
      this.empty = false;
      this.loading = true
      this.queryParams.params = {}
      if (this.queryParams.timeRange && this.queryParams.timeRange.length > 0) {
        this.queryParams.start = this.queryParams.timeRange[0]
        this.queryParams.end = this.queryParams.timeRange[1]
      }
 
      listWorkOrder(this.queryParams).then(response => {
        response.data.forEach(item => {
          if (item.imgList) {
            item.imgList = item.imgList.map(img => {
              return this.$img + img
            })
          }
        })
        this.workOrderList = response.data
        this.total = response.total
        this.loading = false
        if (this.total === 0) {
          this.empty = true
        }
      })
    },
    // 取消按钮
    cancel() {
      this.open = false
      this.reset()
    },
    // 表单重置
    reset() {
      this.form = {
        id: null,
        workOrderNo: null,
        unitId: null,
        ywPeopleId: null,
        ywHandleTime: null,
        ywResult: null,
        ywCondition: null,
        ywCheckResult: null,
        createTime: null,
        updateTime: null,
        deleted: null
      }
      this.resetForm('form')
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1
      this.getList()
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.daterangeYwHandleTime = []
      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 = '添加运维工单'
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset()
      const id = row.id || this.ids
      getWorkOrder(id).then(response => {
        this.form = response.data
        this.open = true
        this.title = '修改运维工单'
        this.pictureList = JSON.parse(response.data.picture).map(item => {
          return {
            name: item,
            url: process.env.VUE_APP_FILE_API + '/' + item,
            fileName: item
          }
        })
        this.certificateList = JSON.parse(row.certificate).map(item => {
          return {
            name: item,
            url: process.env.VUE_APP_FILE_API + '/' + item,
            fileName: item
          }
        })
      })
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs['form'].validate(valid => {
        if (valid) {
          if (this.form.id != null) {
            updateWorkOrder(this.form).then(response => {
              this.$modal.msgSuccess('修改成功')
              this.open = false
              this.getList()
            })
          } else {
            addWorkOrder(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 delWorkOrder(ids)
      }).then(() => {
        this.getList()
        this.$modal.msgSuccess('删除成功')
      }).catch(() => {
      })
    },
    /** 导出按钮操作 */
    handleExport() {
      this.download('/work-order/export', {
        ...this.queryParams
      }, `work-order_${new Date().getTime()}.xlsx`)
    }
  }
}
</script>
 
<style scoped>
.moreInfo {
  width: 100%;
  padding: 10px;
  display: flex;
}
.card {
  position: relative;
  display: flex;
  flex-direction: row;
}
.card-left {
  flex: 2;
}
.work-order {
  flex: 3;
  padding-right: 10px;
  padding-top: 10px;
  height: 150px;
}
 
.work-order-status {
  position: absolute;
  top: -16px;
  right: 2px;
  opacity: 0.5;
}
.work-order-overtime {
  position: absolute;
  top: 40px;
  right: 10px;
}
.work-order-item {
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.time {
  font-size: 13px;
  color: #999;
}
 
.image {
  width: 165px;
  height: 150px;
  padding: 10px;
}
 
.line-limit-length {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 200px;
}
.my-button {
  margin-left: 0px !important;
  margin-right: 15px;
}
.my-col {
  margin-bottom: 20px; box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; position: relative;
}
::v-deep el-step__description.is-finish {
  color: gray;
}
</style>