licp
2024-07-01 b5397c4f12baf35a3200ce4d053d549ffa7ec2e4
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
<style scoped>
    .title {
        height: 60px;
        line-height: 60px;
    }
 
    .search {
        background-color: #fff;
        height: 80px;
        display: flex;
        align-items: center;
    overflow: hidden;
    }
 
    .search_thing {
        display: flex;
        align-items: center;
        height: 50px;
    width: 230px;
    }
 
    .search_label {
        width: 90px;
        font-size: 14px;
        text-align: right;
    }
 
    .search_input {
        width: calc(100% - 90px);
    }
 
    .table {
        margin-top: 10px;
        background-color: #fff;
        width: calc(100% - 40px);
        height: calc(100% - 60px - 80px - 10px - 40px);
        padding: 20px;
    }
 
    .tab {
        list-style-type: none;
        display: flex;
        margin-bottom: 12px;
    }
 
    .tab li {
        line-height: 24px;
        padding: 6px 14px;
        font-size: 14px;
        color: #333333;
        border: 1px solid #EEEEEE;
        cursor: pointer;
    }
 
    .tab li:nth-child(1) {
        border-radius: 8px 0 0 8px;
    }
 
    .tab li:nth-child(5) {
        border-radius: 0 8px 8px 0;
    }
 
    .tab li.active {
        border-color: #3A7BFA;
        color: #3A7BFA;
    }
 
    .el-form-item {
        margin-bottom: 16px;
    }
  .box-card >>>.el-radio__inner {
    border-radius: 2px !important;
  }
  .box-card >>>.el-radio__input.is-checked .el-radio__inner::after {
    content: '';
    width: 8px;
    height: 3px;
    border: 1px solid white;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 3px;
    left: 2px;
    transform: rotate(-45deg);
    border-radius: 0px;
    background: none;
  }
  >>>.el-radio__label{
    color: #000 !important;
  }
  .el-dialog__body >>>.el-radio__label{
    font-size: 8px;
  }
  .el-dialog__body >>>.el-radio__input.is-checked .el-radio__inner::after {
    content: '';
    width: 4px;
    height: 3px;
    border: 1px solid #000;
    border-top: transparent;
    border-right: transparent;
    text-align: center;
    display: block;
    position: absolute;
    top: 1px;
    left: 2px;
    transform: rotate(-45deg);
    border-radius: 0px;
    background: none;
  }
  >>>.el-radio__input.is-disabled.is-checked .el-radio__inner{
    background: #3A7BFA;
  }
  .el-dialog__body >>>.el-radio__input.is-disabled.is-checked .el-radio__inner{
    background: transparent;
  }
  .el-dialog__body >>>.el-radio__inner{
    width: 8px !important;
    height: 8px !important;
  }
  .el-dialog__body >>>.el-radio__label{
    padding-left: 2px !important;
  }
  .el-dialog__body >>>.el-card__body{
    padding: 0 !important;
  }
  .el-dialog__body >>>.el-radio__input.is-disabled .el-radio__inner{
    border-color: #000 !important;
  }
  .el-dialog__body >>>.el-radio__input.is-disabled.is-checked .el-radio__inner{
    border: none !important;
  }
  .scor{
    width: 3px;
    height: 3px;
    border-radius: 1px;
    border: 1px solid #000;
    display: inline-block;
  }
  .ellipsis-multiline {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    max-height: 3.0em; /* 高度为字体大小的两倍 */
    line-height: 1.5em; /* 行高 */
    height: 3.0em; /* 高度为行高的两倍 */
  }
</style>
 
<template>
    <div class="inspection_order">
        <div style="width: 100%;height: 100%;" v-if="active == 0">
            <div>
                <el-row class="title">
                    <el-col :span="12" style="padding-left: 20px;text-align: left;">检验下单</el-col>
                    <el-col :span="12" style="text-align: right;">
            <el-button size="medium" type="primary" @click="print">标签打印</el-button>
                        <el-button size="medium" type="primary" @click="playOrder(1)" v-if="addPower">下单</el-button>
                    </el-col>
                </el-row>
            </div>
            <div class="search" :style="`height: ${more?130:80}px;`">
        <el-row :gutter="10" style="width: 100%;">
          <el-col :span="20" style="display: flex;flex-wrap: wrap;">
            <div class="search_thing" style="width: 20%;">
              <div class="search_label">委托编号:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.entrustCode" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;">
              <div class="search_label">样品名称:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.sampleType" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;">
              <div class="search_label">样品型号:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.sampleModel" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;">
              <div class="search_label">样品编号:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.sampleCode" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;">
              <div class="search_label">下单时间:</div>
              <div class="search_input">
                <el-date-picker style="width:100%" v-model="componentData.entity.createTime"
                type="date"
                size="small"
                format="yyyy-MM-dd"
                value-format="yyyy-MM-dd HH:mm:ss"
                clearable
                placeholder="选择日期">
                </el-date-picker>
              </div>
            </div>
            <div class="search_thing" style="width: 20%;" v-if="more">
              <div class="search_label">下单人:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.name" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;" v-if="more">
              <div class="search_label">工程名称:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.engineering" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
            <div class="search_thing" style="width: 20%;" v-if="more">
              <div class="search_label">生产单位:</div>
              <div class="search_input"><el-input size="small" placeholder="请输入" clearable
                  v-model="componentData.entity.production" @keyup.enter.native="refreshTable()"></el-input></div>
            </div>
          </el-col>
          <el-col :span="4">
            <div class="search_thing">
              <el-button type="text" :icon="!more?'el-icon-arrow-down':'el-icon-arrow-up'" style="color: #3A7BFA;" @click="more=!more">{{!more?'更多':'收起'}}</el-button>
              <el-button size="small" @click="refresh()">重 置</el-button>
              <el-button size="small" type="primary" @click="refreshTable()">查 询</el-button>
            </div>
          </el-col>
        </el-row>
            </div>
            <div class="table">
                <ul class="tab">
                    <li v-for="(m,i) in tabList" :key="i" :class="{active:i==tabIndex}" @click="handleTab(m,i)">{{m.label}}</li>
                </ul>
                <ValueTable :style="getStyle()" ref="ValueTable" :url="$api.insOrder.selectInsOrderParameter" :componentData="componentData"
                    :key="'b'+upIndex"  />
            </div>
            <!-- 审核 -->
            <el-dialog title="下单审核" :visible.sync="verifyDialogVisible" width="30%" :before-close="handleClose">
                <p style="font-size:16px;color:#333333" v-if="!isPass">委托编号<span
                        style="color:#34BD66">ZTMS2023071001</span>的信息是否通过</p>
                <el-form :label-position="labelPosition" :model="formData" label-width="150px" ref="ruleForm" v-else>
                    <el-form-item label="请输入样品库位号:">
                        <el-input v-model="formData.specificationModel" size="small" style="width:60%"></el-input>
                    </el-form-item>
                </el-form>
                <span slot="footer" class="dialog-footer">
                    <el-row v-if="!isPass">
                        <el-button @click="handleClose">退 回</el-button>
                        <el-button type="primary" @click="submitForm" :loading="upLoad">通 过</el-button>
                    </el-row>
                    <el-row v-else>
                        <el-button @click="handleClose">返 回</el-button>
                        <el-button type="primary" @click="submitForm" :loading="upLoad">确 定</el-button>
                    </el-row>
                </span>
            </el-dialog>
            <!-- 撤销 -->
            <el-dialog title="下单撤销" :visible.sync="quashDialogVisible" width="30%" :before-close="handleClose">
                <p style="font-size:16px;color:#333333" v-if="!isQuash">委托编号<span
                        style="color:#34BD66">{{this.insOrderRow.entrustCode}}</span>的信息是否撤销</p>
                <el-form :label-position="labelPosition" :model="formData" label-width="150px" ref="ruleForm" v-else>
                    <el-form-item label="请输入撤销原因:">
                        <el-input v-model="formData.specificationModel" size="small" style="width:60%"></el-input>
                    </el-form-item>
                </el-form>
                <span slot="footer" class="dialog-footer">
                    <el-row v-if="!isQuash">
                        <el-button @click="handleClose">取 消</el-button>
                        <el-button type="primary" @click="submitForm" :loading="upLoad">确 定</el-button>
                    </el-row>
                    <el-row v-else>
                        <el-button @click="handleClose">返 回</el-button>
                        <el-button type="primary" @click="submitForm" :loading="upLoad">确 定</el-button>
                    </el-row>
                </span>
            </el-dialog>
            <!-- 下发 -->
            <el-dialog title="检验分配" :visible.sync="issuedDialogVisible" width="400px" :before-close="handleClose">
                <div class="body" style="max-height: 60vh;">
                    <el-row>
                        <el-col class="search_thing" style="width: 95%;">
                            <div class="search_label"><span class="required-span">* </span>约定时间:</div>
                            <div class="search_input">
                                <el-date-picker size="small" v-model="distributeData.appointed" type="date" placeholder="选择日期"
                                    value-format="yyyy-MM-dd" style="width: 100%;" format="yyyy-MM-dd">
                                </el-date-picker>
                            </div>
                        </el-col>
                        <el-col class="search_thing" style="width: 95%;">
                            <div class="search_label"><span class="required-span" v-show="distributeData.type==2">* </span>指派人员:</div>
                            <div class="search_input">
                                <el-select v-model="distributeData.userId" placeholder="请选择" size="small" style="width: 100%;" clearable filterable>
                                    <el-option v-for="(item,i) in personList" :key="i" :label="item.label" :value="item.value">
                                    </el-option>
                                </el-select>
                            </div>
                        </el-col>
                    </el-row>
                </div>
                <span slot="footer" class="dialog-footer">
                    <el-row>
                        <el-button @click="handleClose2">取 消</el-button>
                        <el-button type="primary" @click="submitForm2" :loading="upLoad">确 定</el-button>
                    </el-row>
                </span>
            </el-dialog>
            <el-dialog title="数据查看" :visible.sync="dataDialogVisible" width="80%">
                <div style="height: 70vh;overflow-y: auto;" v-if="dataDialogVisible">
                    <ValueTable ref="ValueTableDataLook" :url="$api.insOrder.selectSampleAndProductByOrderId"
                        :componentData="componentDataDataLook"/>
                </div>
            </el-dialog>
        </div>
        <div style="width: 100%;height: 100%;" v-if="active >0">
            <Add :active="active" :currentId="currentId" v-if="active<4" />
        </div>
    <el-dialog title="标签打印" :visible.sync="printDialogVisible" width="40%" top="5vh">
      <div style="width:100%;height: 400px;overflow-y: auto;" v-loading="loadPint">
        <div class="dia_body">
          <el-checkbox
          style="margin: 10px 5px;"
          :indeterminate="isIndeterminate"
          v-model="checkAll"
          @change="handleCheckAllChange">全选</el-checkbox>
          <el-checkbox-group @change="changePrintCode()" v-model="checkIndexList">
            <el-card class="box-card" v-for="(item, i) in qrData" :key="i" style="margin-bottom: 15px; font-size: 16px !important;">
                  <el-checkbox :label="i" :key="i" style="position: relative;top:-20px;left:5px"><br></el-checkbox>
                   <div>
                    <el-row style="font-size: 14px;padding-left: 20px;">
                        <el-col  style="font-weight: bold;">{{ item.pName }}</el-col>
                    </el-row>
                    <div style="display: flex;">
                      <div>
                        <el-col :span="8" :offset="4">
                          <vueQr :text="JSON.stringify(item.sampleCode)" :size="140" :margin="2"></vueQr>
                        </el-col>
                      </div>
                      <div style="margin-left: 50px;width: 100%;">
                        <el-row>
                          <el-col  style="font-weight: bold;font-size: 14px;"><span>样品编号:&nbsp; </span>{{ item.sampleCode }}</el-col>
                        </el-row>
                        <el-row style="margin-top: 1px;font-size: 14px;">
                          <el-col  style="font-weight: bold;"><span>委托单号:&nbsp; </span>{{ item.code }}</el-col>
                        </el-row>
                        <el-row style="margin-top: 1px;font-size: 14px;">
                          <el-col  style="font-weight: bold;"><span>规格型号:&nbsp; </span>{{ item.model }}</el-col>
                        </el-row>
                        <el-row style="margin-top: 1px;font-size: 14px;">
                          <el-col  style="font-weight: bold;"><span>样品名称:&nbsp; </span>{{ item.sample }}</el-col>
                        </el-row>
                        <el-row style="margin-top: 1px;font-size: 14px;" class="ellipsis-multiline">
                          <el-col  style="font-weight: bold;"><span>检测项目:&nbsp; </span>{{ item.item }}</el-col>
                        </el-row>
                        <el-row style="margin-top: 3px;font-size: 14px;">
                          <el-col  style="font-weight: bold;display: flex;align-items: center;"><span>样品状态:&nbsp; </span><el-radio-group :value="item.insState" style="margin-top: 7px;margin-left: 4px;" disabled>
                            <el-radio :label="0" style="font-weight: bold;margin-right: 7px;">待检</el-radio>
                            <el-radio :label="1" style="font-weight: bold;margin-right: 7px;">在检</el-radio>
                            <el-radio :label="2" style="font-weight: bold;margin-right: 7px;">已检</el-radio>
                          </el-radio-group><el-radio :label="1" style="font-weight: bold;margin-top: 7px;" v-model="item.isLeave" disabled>留样</el-radio></el-col>
                        </el-row>
                      </div>
                  </div>
                  </div>
            </el-card>
          </el-checkbox-group>
        </div>
      </div>
      <span slot="footer" class="dialog-footer">
        <el-row>
          <el-button @click="printDialogVisible=false">取 消</el-button>
          <el-button type="primary" @click="submitPrint" :loading="printLoading">打 印</el-button>
        </el-row>
      </span>
    </el-dialog>
    <div class="el-dialog__body" style="width:320px;overflow-y: auto;position: absolute;top:9999px;margin-top: 0;position: fixed;top: 0;display: none;">
        <div id="printMOrder">
          <el-card class="box-card" v-for="(item, i) in checkDataList" :key="i" style="font-size: 8px !important;page-break-before:always;page-break-after: always;color: #000;">
            <div style="display: flex;">
              <div>
                <el-col :span="8" :offset="4">
                  <vueQr :text="JSON.stringify(item.sampleCode)" :size="78" :margin="2"></vueQr>
                </el-col>
              </div>
              <div style="margin-left: 57px;line-height: 9px;">
                <el-row>
                  <el-col  style="font-size: 8px;"><span>样品编号:&nbsp; </span>{{ item.sampleCode }}</el-col>
                </el-row>
                <el-row style="font-size: 8px;">
                  <el-col><span>委托单号:&nbsp; </span>{{ item.code }}</el-col>
                </el-row>
                <el-row style="font-size: 8px;">
                  <el-col><span>规格型号:&nbsp; </span>{{ item.model }}</el-col>
                </el-row>
                <el-row style="font-size: 8px;">
                  <el-col ><span>样品名称:&nbsp; </span>{{ item.sample }}</el-col>
                </el-row>
                <el-row style="font-size: 8px;">
                  <el-col class="ellipsis-multiline"><span>检测项目:&nbsp; </span>{{ item.item }}</el-col>
                </el-row>
                <el-row style="margin-top: 3px;font-size: 8px;">
                  <el-col  style="display: flex;align-items: center;"><span>样品状态:&nbsp;
                  </span>
                    <span style="white-space: nowrap;"><span v-if="item.insState==0">√</span><span class="scor" v-if="item.insState!=0"></span>待检
                    <span v-if="item.insState==1">√</span><span class="scor" v-if="item.insState!=1"></span>在检
                    <span v-if="item.insState==2">√</span><span class="scor" v-if="item.insState!=2"></span>已检
                    <span v-if="item.isLeave==1">√</span><span class="scor" v-if="item.isLeave!=1"></span>留样</span>
                    <!-- <el-radio-group :value="item.insState" style="margin-top: 3px;margin-left: 1px;" disabled>
                    <el-radio :label="0" style="margin-right: 3px;font-size: 6px;">待检</el-radio>
                    <el-radio :label="1" style="margin-right: 3px;font-size: 6px;">在检</el-radio>
                    <el-radio :label="2" style="margin-right: 3px;font-size: 6px;">已检</el-radio>
                  </el-radio-group><el-radio :label="1" style="margin-top: 3px;font-size: 8px;" v-model="item.isLeave" disabled>留样</el-radio> -->
                </el-col>
                </el-row>
              </div>
            </div>
          </el-card>
        </div>
      </div>
    </div>
</template>
 
<script>
    import ValueTable from '../tool/value-table.vue'
    import Add from '../do/b1-ins-order/add.vue'
  import vueQr from 'vue-qr'
  import PrintJS from 'print-js'
    export default {
        components: {
            ValueTable,
            Add,
      vueQr
        },
        data() {
            return {
        loadPint:false,
        checkAll: false,
        isIndeterminate: true,
        printLoading:false,
        printDialogVisible:false,
                //是否审核通过  true是 false不是
                isPass: false,
                //是否审核撤销  true是 false不是
                isQuash: false,
                verifyDialogVisible: false,
                quashDialogVisible: false,
                issuedDialogVisible: false,
                dataDialogVisible: false,
                formData: {},
                formData0: {},
                formData1: {},
                distributeData: {
                    orderId: '',
                    sampleId: '',
                    appointed: '',
                    userId: ''
                },
                // 人员列表
                personList: [],
                componentData: {
                    entity: {
                        entrustCode: null,
                        sampleType: null,
            sampleName: null,
            sampleModel: null,
            sampleCode: null,
                        state: 0,
            name:null,
            engineering:null,
            production:null,
                        orderBy: {
                            field: 'id',
                            order: 'asc'
                        }
                    },
                    isIndex: true,
                    showSelect: true,
                    select: true,
          selectMethod:'selectMethod',
                    do: [{
                        id: 'dataLook',
                        font: '数据查看',
                        type: 'text',
                        method: 'handleDataLook',
                        disabFun: (row, index) => {
                            return row.state != 1 && row.state != 4
                        }
                    }, {
                        id: 'download',
                        font: '报告下载',
                        type: 'text',
                        method: 'download',
                        disabFun: (row, index) => {
                            return row.state != 4 || row.reportId == null
                        }
                    }, {
                        id: 'verify',
                        font: '审核',
                        type: 'text',
                        method: 'handleVerify',
                        disabFun: (row, index) => {
                            return row.state != 0
                        }
                    }, {
                        id: 'quash',
                        font: '撤销',
                        type: 'text',
                        method: 'handlEquash',
                        disabFun: (row, index) => {
                            return row.state != 1 && row.state != 0
                        }
                    }, {
                        font: '分配',
                        type: 'text',
                        method: 'handleIssued',
                        disabFun: (row, index) => {
                            return row.state != 1 || row.sendTime != null
                        }
                    }],
                    linkEvent: {
                        sampleName: {
                            method: 'selectAllByOne'
                        }
                    },
                    tagField: {
                        type: {
                            select: [{
                                value: 0,
                                type: 'success',
                                label: '普通'
                            }, {
                                value: 1,
                                type: 'warning',
                                label: '优先'
                            }, {
                                value: 2,
                                type: 'danger',
                                label: '紧急'
                            }]
                        },
                        createUser: {
                            select: []
                        },
            orderType: {
              select: []
            },
            processing: {
              select: [{
                value: 1,
                label: '实验室处理'
              },{
                value: 0,
                label: '委托单位取回'
              }]
            },
            isLeave: {
              select: [{
                value: 1,
                label: '留样'
              },{
                value: 0,
                label: '不留样'
              }]
            },
            send: {
              select: [{
                value: 1,
                label: '自取'
              },{
                value: 0,
                label: '其他'
              }]
            }
                    },
                    selectField: {},
                    requiredAdd: [],
                    requiredUp: []
                },
                componentDataDataLook: {
                    entity: {
                        id: 0,
                        orderBy: {
                            field: 'sampleCode',
                            order: 'asc'
                        }
                    },
                    isIndex: false,
                    showSelect: false,
                    select: false,
                    do: [],
                    tagField: {
                        insState: {
                            select: []
                        },
                        insResult: {
                            select: [{
                                value: 1,
                                label: '合格',
                                type: 'success'
                            },{
                                value: 0,
                                label: '不合格',
                                type: 'danger'
                            }]
                        }
                    },
                    selectField: {},
          spanConfig:{
            rows:[
              {
                name:'sampleCode',
                index:0
              },
              {
                name:'sample',
                index:1
              },
              {
                name:'model',
                index:2
              }
            ]
          },
                    requiredAdd: [],
                    requiredUp: []
                },
                entityCopy: {},
                upIndex: 0,
                addPower: true,
                upLoad: false,
                tabList: [{
                        label: '待审核',
                        value: 0
                    }, {
                        label: '待检验',
                        value: 1
                    },
                    {
                        label: '已检验',
                        value: 4
                    },
                    {
                        label: '退回',
                        value: 2
                    },
                    {
                        label: '撤销',
                        value: 3
                    },
                ],
                tabIndex: 0,
                active: 0, //1:下单,2:查看,3:审核,4:光纤配置,默认为0
                currentId: null,
        more:false,
        insOrderRow:{},
        checkIndexList:[],
        checkDataList:[
          // {
          //   sampleCode:'11111'
          // }
        ],
        qrData:[],
        multipleSelection:[]
            }
        },
    watch:{
      printDialogVisible(newVal){
        if(!newVal){
          this.qrData = []
          this.checkIndexList = []
          this.checkDataList = []
          this.isIndeterminate = true;
        }
      }
    },
        mounted() {
            this.entityCopy = this.HaveJson(this.componentData.entity)
            this.getPower()
            this.getUserMenu()
            this.getAuthorizedPerson()
            this.getInsStateDicts()
      this.selectEnumByCategoryForOrderType()
        },
        methods: {
      selectMethod(val){
        this.multipleSelection = val
      },
      getLabelPrinting(selection){
        this.loadPint = true;
        this.$axios.post(this.$api.insOrder.labelPrinting,{
          ids:selection.map(m=>m.id).join(',')
        }).then(res => {
          let arr = res.data;
          arr.forEach(a=>{
            this.loadPint = false;
            let arr1 = []
            a.insProduct.forEach(b=>{
              arr1.push(b.inspectionItem)
            })
            a.item = [...new Set(arr1)].join(',')
          })
          this.qrData = arr
          console.log(this.qrData)
                })
      },
      //选择要打印的二维码
      changePrintCode(){
        let indexList = this.checkIndexList
        let arr = []
        indexList.forEach(i=>{
          arr.push(this.qrData[i])
        })
        this.checkDataList = arr
      },
      //全选
      handleCheckAllChange(val) {
        if(val){
          for(var i=0;i<this.qrData.length;i++){
            this.checkIndexList.push(i)
          }
          this.checkDataList = this.qrData
        }else{
          this.checkIndexList = []
          this.checkDataList = []
        }
        this.isIndeterminate = false;
      },
      submitPrint(){
        if(this.checkDataList.length < 1){
          this.$message.warning("请选择要打印的二维码")
          return
        }
        this.printDialogVisible = false;
        PrintJS({
            printable: 'printMOrder',//页面
            type: "html",//文档类型
              maxWidth:450,
              targetStyles:['*'],
              style: `@page {
                margin:0;
                size: 360px 175px portrait;
              }
              html{
                zoom:100%;
              }
              @media print{
                width: 360px;
                height: 175px;
                margin:0;
              }`,
              onPrintDialogClose: this.erexcel=false,
              targetStyles: ["*"], // 使用dom的所有样式,很重要
              font_size: '',
        });
      },
      print(){
        if(this.multipleSelection.length==0){
            this.$message.warning('请选择一条数据')
            return
        }
        let selection = this.multipleSelection
        this.getLabelPrinting(selection)
        this.printDialogVisible = true
      },
            getAuthorizedPerson() {
                this.$axios.get(this.$api.user.getUserMenu).then(res => {
                    let data = []
                    res.data.forEach(a => {
                        data.push({
                            label: a.name,
                            value: a.id
                        })
                    })
                    this.personList = data
                })
            },
            refreshTable() {
                this.$refs['ValueTable'].selectList()
            },
            refresh() {
                this.componentData.entity = this.HaveJson(this.entityCopy)
                this.upIndex++
            },
            // 权限分配
            getPower(radio) {
                let power = JSON.parse(sessionStorage.getItem('power'))
                let up = false
                let del = false
                let add = false
        let revoke = false
        let check = false
                for (var i = 0; i < power.length; i++) {
                    if (power[i].menuMethod == 'upInsOrder') {
                        up = true
                    }
                    if (power[i].menuMethod == 'addInsOrder') {
                        add = true
                    }
          if (power[i].menuMethod == 'updateStatus') {
              revoke = true
          }
          if (power[i].menuMethod == 'upInsOrderOfState') {
              check = true
          }
                }
                if (!up) {
                    this.componentData.do.splice(4, 1)
                }
        if (!revoke) {
            this.componentData.do.splice(3, 1)
        }
        if (!check) {
            this.componentData.do.splice(2, 1)
        }
                this.addPower = add
            },
            handleClose() {
                this.verifyDialogVisible = false;
                this.quashDialogVisible = false;
                this.issuedDialogVisible = false;
                this.dataDialogVisible = false;
                this.upLoad = false;
            },
            handleClose2() {
                this.verifyDialogVisible = false;
                this.quashDialogVisible = false;
                this.issuedDialogVisible = false;
                this.dataDialogVisible = false;
                this.upLoad = false;
            },
            // 详情
            selectAllByOne(row) {
                this.active = 2;
                // console.log(row);
                // //打开弹框
                // this.dialogVisible = true;
                // //row = 点击对应行值
                // //复制给formData
                // this.formData = this.HaveJson(row);
                this.currentId = row.id
            },
            // 数据查看
            handleDataLook(row) {
                this.componentDataDataLook.entity.id = row.id
                this.dataDialogVisible = true;
            },
            // 下载报告
            download(row) {
        let url = row.urlS?row.urlS:row.url;
        if(url){
          url = url.split('.')[0]+'.pdf'
          const link = document.createElement('a');
          link.href = this.javaApi + url;
          link.target = '_blank';
          document.body.appendChild(link);
          link.click();
        }
      },
            // 审核
            handleVerify(row) {
                // this.verifyDialogVisible = true;
                this.active = 3;
                this.currentId = row.id
            },
            // 撤销
            handlEquash(row) {
                this.quashDialogVisible = true;
        this.insOrderRow=row
            },
            // 下发
            handleIssued(row) {
                this.issuedDialogVisible = true;
                this.$axios.post(this.$api.insOrder.selectOrderManDay, {
                    id: row.id
                }).then(res => {
                    this.distributeData.orderId = row.id
                    this.distributeData.sampleId = row.sampleId
                    this.distributeData.appointed = res.data
          this.distributeData.type = row.type
                })
            },
            submitForm2() {
                if (this.distributeData.appointed == null || this.distributeData.appointed == '') {
                    this.$message.error('约定时间未填写')
                    return
                }
        if(this.distributeData.type==2&&(this.distributeData.userId==null||this.distributeData.userId=='')){
                    this.$message.error('指派人员未填写')
                    return
                }
                this.upLoad = true;
                this.$axios.post(this.$api.insOrder.upInsOrder, {
                    orderId: this.distributeData.orderId,
                    sampleId: this.distributeData.sampleId,
                    appointed: this.distributeData.appointed,
                    userId: this.distributeData.userId
                }).then(res => {
                    if (res.code === 201) {
                        this.upLoad = false
                        return
                    }
                    this.$message.success('修改成功')
                    this.upLoad = false
                    this.issuedDialogVisible = false
                    this.refreshTable()
                }).catch(e => {
                    this.$message.error('修改失败')
                    this.upLoad = false
                })
            },
            submitForm() {
                this.upLoad = true;
        if (this.tabIndex==1){
          this.axios.put(this.$api.insOrder.updateInspected+"?id="+this.insOrderRow.id).then(res=>{
            if (res.code===200){
              this.upLoad=false
              this.quashDialogVisible=false
              this.refreshTable()
              this.$message.success("更新成功")
            }
          })
        }else{
          this.axios.put(this.$api.insOrder.updateStatus+"?id="+this.insOrderRow.id).then(res=>{
            if (res.code===200){
              this.upLoad = false
              this.quashDialogVisible = false
              this.refreshTable()
              this.$message.success("更新成功")
            }
          })
        }
                let authorizedPerson = this.formData.authorizedPerson.length > 0 ? this.formData.authorizedPerson.join(',') : ''
                delete this.formData.createTime
                delete this.formData.updateTime
                delete this.formData.createUser
                delete this.formData.updateUser
                this.formData.authorizedPerson = authorizedPerson
            },
            // 下单
            playOrder(num) {
                this.active = num
            },
            handleTab(m, i) {
                this.tabIndex = i;
                this.componentData.entity.state = m.value
                this.refreshTable()
            },
            getUserMenu() {
                this.$axios.get(this.$api.user.getUserMenu).then(res => {
                    let data = []
                    res.data.forEach(a => {
                        data.push({
                            label: a.name,
                            value: a.id
                        })
                    })
                    this.componentData.tagField.createUser.select = data
                })
            },
            getInsStateDicts() {
                this.$axios.post(this.$api.enums.selectEnumByCategory, {
                    category: "检验任务状态"
                }).then(res => {
                    let data = res.data
                    this.insStateList = data
                    data.forEach(ele => {
                        //0:待检验 1:检验中 2:已检验 3:待复核 4:复核未通过 5:复核通过
                        if (['2', '5'].includes(ele.value)) {
                            ele.type = 'success'
                        } else if (['1', '3'].includes(ele.value)) {
                            ele.type = 'warning'
                        } else if (['0', '4'].includes(ele.value)) {
                            ele.type = 'danger'
                        }
                    })
                    this.componentDataDataLook.tagField.insState.select = data
                })
            },
      selectEnumByCategoryForOrderType() {
        this.$axios.post(this.$api.enums.selectEnumByCategory, {
          category: "检验类别"
        }).then(res => {
          this.componentData.tagField.orderType.select = res.data
        })
      },
      getStyle(){
        return 'height: calc(100% - '+(this.more?'94':'44')+'px)'
      }
        }
    }
</script>