qinxianzhangyao
2024-03-15 ac6766c11f8a2b8de903b58c13a8f206fa01dccd
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
988
989
990
991
<template>
  <div class="app-container">
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
      <el-form-item label="姓名" prop="name">
        <el-input v-model="queryParams.name" placeholder="请输入姓名" style="width: 100px" @keyup.enter.native="handleQuery" />
      </el-form-item>
      <el-form-item label="体检号" prop="tjNum">
        <el-input style="width: 170px" v-model="queryParams.tjNum" placeholder="请输入体检号" clearable
          @keyup.enter.native="handleQuery" ref="inputName" @blur="hb" />
      </el-form-item>
      <el-form-item label="报告时间" prop="createTimeList">
        <el-date-picker clearable v-model="createTimeList" type="daterange" range-separator="-"
          start-placeholder="开始日期" end-placeholder="结束日期" :picker-options="pickerOptions" :default-time="['00:00:00', '23:00:00']"
              format="yyyy-MM-dd HH:mm:ss"
              value-format="yyyy-MM-dd HH:mm:ss"
          placeholder="请选择出报告时间"  @change="dateChangebirthday1">
        </el-date-picker>
      </el-form-item>
      <!-- <el-form-item label="单位名称" prop="firmId">
        <el-select :remote-method="getRemoteData" v-model="queryParams.firmId" value-key="drugManufacturerId" remote
          filterable placeholder="请选择单位名称" clearable>
          <el-option v-for="dict in CompanyList" :key="dict.drugManufacturerId" :label="dict.cnName"
            :value="dict.drugManufacturerId" />
        </el-select>
      </el-form-item> -->
 
      <el-form-item>
        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
      </el-form-item>
    </el-form>
 
    <el-row :gutter="10" class="mb8" style="margin-left: 10px">
      <!-- <el-col :span="1.5">
        <el-button type="primary" icon="el-icon-download" size="mini" @click="handleExport"
          v-hasPermi="['hosp:order:export']">导出</el-button>
      </el-col> -->
      <el-col :span="1.5">
        <el-button type="primary" size="mini" :disabled="multiple" @click="viewReport">批量体检报告打印</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button type="primary" size="mini" :disabled="multiple" @click="jiankangReport">健康检查表打印</el-button>
      </el-col>
      <el-col :span="1.5">
        <el-button type="primary" size="mini" :disabled="single" @click="baogaoyulan">报告预览</el-button>
      </el-col>
      <el-col :span="1.5">
        <div id="main111">
          <el-input style="width: 920px" v-model="form.name"></el-input>
        </div>
      </el-col>
      <!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> -->
    </el-row>
    <!-- <div style="display:none">
      <div id="print" style="width:300px;height:54px;border: 1px solid red;">
        <barcode :value="barcode" :height="40" :width="2" :margin="0">条形码加载失败</barcode>
      </div>
    </div> -->
 
    <!-- <div id="box">
      测试
    </div> -->
 
    <template>
      <el-table border style="margin: 14px; width: 99%" v-loading="loading"
        :default-sort="{ prop: 'reportTime', order: 'descending' }" :data="orderList"
        @selection-change="handleSelectionChange" ref="multipleTable">
        <el-table-column type="selection" width="40px" align="center" height="10px" fixed="left" />
        <!-- <el-table-column label="序号" align="center" prop="newID" width="50px" fixed="left" height="10px" /> -->
        <el-table-column label="姓名" align="center" prop="tjCustomerName" height="10px" width="90px"
          :show-overflow-tooltip="true" />
        <el-table-column label="性别" align="center" prop="tjCustomerSex" width="55px" height="10px"
          :show-overflow-tooltip="true">
          <template slot-scope="scope">
            <span v-if="scope.row.tjCustomerSex == '0'">男</span>
            <span v-if="scope.row.tjCustomerSex == '1'">女</span>
            <span v-if="scope.row.tjCustomerSex == '2'">未知</span>
          </template>
        </el-table-column>
        <el-table-column label="年龄" align="center" prop="tjCustomerAge" height="10px" width="60px"
          :show-overflow-tooltip="true" />
        <el-table-column label="电话" align="center" prop="tjCustomerPhone" :show-overflow-tooltip="true" height="10px"
          width="110px" />
        <el-table-column label="体检类型" align="center" prop="tjType" height="10px" width="80px"
          :show-overflow-tooltip="true">
          <template slot-scope="scope">
            <span v-if="scope.row.tjType == '1'">团队</span>
            <span v-if="scope.row.tjType == '2'">个人</span>
          </template>
        </el-table-column>
        <el-table-column label="体检号" align="center" prop="tjNumber" :show-overflow-tooltip="true" width="160px" />
        <el-table-column label="所选套餐" align="center" prop="pacName" height="10px" :show-overflow-tooltip="true"
          width="140px" />
        <el-table-column label="登记人" align="center" prop="createBy" height="10px" :show-overflow-tooltip="true"
          width="100px" />
        <el-table-column label="登记时间" align="center" prop="createTime" width="155px" height="10px"
          :show-overflow-tooltip="true">
          <template slot-scope="scope">
            <span>{{ parseTime(scope.row.createTime) }}</span>
          </template>
        </el-table-column>
 
        <el-table-column label="报告时间" align="center" prop="reportTime" width="155px" height="10px" sortable
          :show-overflow-tooltip="true">
          <template slot-scope="scope">
            <span>{{ parseTime(scope.row.reportTime) }}</span>
          </template>
        </el-table-column>
        <el-table-column label="打印时间" align="center" prop="printLastTime" width="155px" height="10px"
          :show-overflow-tooltip="true">
          <template slot-scope="scope">
            <span>{{ parseTime(scope.row.printLastTime) }}</span>
          </template>
        </el-table-column>
        <el-table-column label="备注" align="center" prop="remark" height="10px" :show-overflow-tooltip="true" />
 
        <!-- <el-table-column fixed="right" label="操作" align="center" class-name="small-padding fixed-width" height="10px"
          width="60px">
          <template slot-scope="scope">
            <el-button size="mini" type="text" icon="el-icon-document" @click="investigation(scope.row)"
              v-hasPermi="['hosp:order:edit']" title="详情" style="margin-right: 15px"></el-button>
          </template>
        </el-table-column> -->
      </el-table>
    </template>
 
    <div class="pag">
      <div class="pag1">
        <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
          @pagination="getList" />
      </div>
    </div>
 
    <el-drawer title="我是标题" :visible.sync="drawer" :with-header="false">
      <div class="drawer1">
        <div class="drawer2">
          <span>体检人:{{ gation.tjCustomerName }}</span><br />
          <span>联系电话:{{ gation.tjCustomerPhone }}</span>
        </div>
        <span class="drawer6">基本信息</span>
        <div class="drawer3">
          <div class="drawer4">
            <span>姓名:{{ gation.tjCustomerName }}</span>
            <span>年龄:{{ gation.tjCustomerAge }}</span>
            <span>团体/个人:{{ gation.tjType ? "团队" : "个人" }}</span>
            <span>联系人:{{ gation.checkDoctor }}</span>
            <span>体检次数:{{ gation.tjCustomerAge }}</span>
          </div>
          <div class="drawer5">
            <span>性别:{{ gation.tjCustomerSex ? "女" : "男" }}</span>
            <span>体检号:{{ gation.tjNumber }}</span>
            <span>报告时间:{{ gation.createTime }}</span>
            <span>体检时间:{{ gation.finishTime }}</span>
            <el-button type="primary" plain size="mini" @click="viewReport1">最近一次体检报告</el-button>
          </div>
        </div>
        <span class="drawer6">调查问卷</span>
        <div>
          <el-form ref="form" :model="form" label-width="80px" style="margin-top: 20px">
            <el-form-item label="调查结果:">
              <el-select v-model="value" placeholder="请选择调查结果">
                <el-option v-for="item in options" :key="item.value" :label="item.label" :value="item.value">
                </el-option>
              </el-select>
            </el-form-item>
            <el-form-item label="血压:" style="width: 300px" prop="pressure">
              <el-input v-model="form.pressure" placeholder="请输入血压"></el-input>
            </el-form-item>
            <el-form-item label="低压:" placeholder="请输入低压" style="width: 300px" prop="lowPressure">
              <el-input v-model="form.lowPressure" placeholder="请输入低压"></el-input>
            </el-form-item>
            <div style="margin-left: 20px">
              <el-form-item label="1.是否吸烟">
                <el-radio-group v-model="form.resource">
                  <el-radio label="是"></el-radio>
                  <el-radio label="否"></el-radio>
                </el-radio-group>
              </el-form-item>
              <el-form-item label="2.是否饮酒">
                <el-radio-group v-model="form.resource1">
                  <el-radio label="是"></el-radio>
                  <el-radio label="否"></el-radio>
                </el-radio-group>
              </el-form-item>
              <el-form-item label="3.是否熬夜">
                <el-radio-group v-model="form.resource2">
                  <el-radio label="是"></el-radio>
                  <el-radio label="否"></el-radio>
                </el-radio-group>
              </el-form-item>
              <el-form-item label="4.是否头晕">
                <el-radio-group v-model="form.resource3">
                  <el-radio label="是"></el-radio>
                  <el-radio label="否"></el-radio>
                </el-radio-group>
              </el-form-item>
            </div>
            <el-form-item label="其他信息">
              <el-input type="textarea" v-model="form.desc"></el-input>
            </el-form-item>
 
            <el-form-item>
              <el-button type="primary">提交</el-button>
              <el-button @click="drawer = false">取消</el-button>
            </el-form-item>
          </el-form>
        </div>
      </div>
    </el-drawer>
 
    <el-dialog title="PDF 预览" :visible.sync="dialogVisible" :close-on-click-modal="false">
      <div class="main">
        <iframe id="printIframe" :src="url" frameborder="0" style="width: 100%; height: 100%"></iframe>
      </div>
    </el-dialog>
 
    <el-dialog title="导诊单" :visible.sync="daoZhenDan" :close-on-click-modal="false">
      <div class="main">
        <iframe id="printIframe" :src="url" frameborder="0" style="width: 100%; height: 100%"></iframe>
      </div>
    </el-dialog>
 
    <div style="
        position: absolute;
        bottom: 100px;
        left: 500px;
        width: 700px;
        display: none;
      ">
      <div id="printBill">
        <barcode :value="barcode" :height="40" :width="2" :margin="0">条形码加载失败</barcode>
        <div style="font-size: 13px; color: #000000" v-for="(item, index) in DataList1" :key="index">
          <div style="width: 48%; margin-top: 10px">
            姓名:{{ item.tjCustomerName }}
          </div>
          <div style="width: 48%; margin-top: 10px">
            性别:{{ item.tjCustomerSex === 0 ? "男" : "女" }}
          </div>
          <div style="width: 30%; margin-top: 10px">
            年龄:{{ item.tjCustomerAge }}
          </div>
          <div style="width: 58%; margin-top: 10px">
            套餐:{{ item.pacName }}
          </div>
          <div style="width: 100%; margin-top: 10px">温馨提示:</div>
          <div style="width: 100%">1、采血,腹部彩超检查后方可用餐。</div>
          <div style="width: 100%">
            2、近期若有生育计划及未成年人,不宜进行胸片、双能骨密度等放射检查。
          </div>
          <div style="width: 100%">
            3、怀孕或可能已受孕的女士,还应避免妇科、放射科及阴式超声检查。
          </div>
          <div style="width: 100%">4、经期女性不宜进行妇科及尿常规检查。</div>
          <div style="width: 100%">
            5、若您在等待检查过程中有疑问,请及时联系导检护士。
          </div>
          <div style="width: 100%">6、体检结束后请将导检单交还至前台。</div>
        </div>
      </div>
    </div>
    <el-dialog class="dia" title="PDF 预览" :visible.sync="dialogVisibles" :close-on-click-modal="false">
      <div class="main">
        <iframe id="printIframe" :src="url" frameborder="0" style="width: 100%; height: 100%"></iframe>
      </div>
    </el-dialog>
    <!--:before-close="handleClose"  -->
    <el-dialog title="提示" :visible.sync="dialogVisiblese" width="30%" >
      <el-radio v-model="radios" label="1">食品从业人员健康检查表</el-radio>
      <el-radio v-model="radios" label="2">公共场所从业人员检查表</el-radio>
      <span slot="footer" class="dialog-footer">
        <el-button @click="dialogVisible = false">取 消</el-button>
        <el-button type="primary" @click="timjiao">确 定</el-button>
      </span>
    </el-dialog>
  </div>
</template>
 
<script>
import print from "print-js";
import { getInfo } from "@/api/login";
import {
  isPdfOrJimu
} from "@/api/doctor/checkAll";
import {
  listOrder,
  getNumber,
  getPdf,
  getprint,
  hasReport,
  hasPrintCode,
  getOrderListOO,
  getNewDateList
} from "@/api/hosp/order";
import moment from "moment";
import ViewPdf from "@/components/ViewPdf";
import { SubmitCompany, getCompany, queryCompany } from "@/api/team/tuanti";
import { chownSync } from "fs";
export default {
  components: {
    ViewPdf,
  },
  name: "Order",
  data() {
    return {
      radios: '1',
      dialogVisiblese: false,
      createTimeList: "",
      // printObj: {
      //   id: "box",             //打印的区域
      //   preview: false,            //预览工具是否启用
      //   previewTitle: "打印条码",   //预览页面的标题
      //   popTitle: '',                //打印页面的页眉
      //   previewBeforeOpenCallback(vue) {
      //     console.log('正在加载预览窗口')
      //   },
      //   previewopenCallback(vue) {
      //     console.log('已经加载完子页览窗口')
      //   },
      //   clickMounted: (vue) => {
      //     console.log("触发点击打印回调");
      //     vue.isShowPrint = true//框显示条码
      //   },
      //   beforeOpenCallback(vue) {
      //     console.log('打开之前', vue.barcodeNum)
      //   },
      //   openCallback(vue) {
      //     vue.isShowPrint = false // 关胡察码显示框
      //     console.log("执行了打印", vue.barcodeNum)
      //   },
      // },
      report: "",
      gation: {},
      drawer: false,
      options: [
        {
          value: "选项1",
          label: "连接成功",
        },
        {
          value: "选项2",
          label: "无人接听",
        },
        {
          value: "选项3",
          label: "关机",
        },
        {
          value: "选项4",
          label: "空号",
        },
      ],
      url: "",
      dialogVisibles: false,
      barcode: null,
      value: "",
      dialogVisible: false,
      daoZhenDan: false,
      Projectopen: false,
      src: "",
      url: "",
      flag: true,
      bill: null,
      Treedata: [],
      defaultProps: {
        children: "tjProjectList",
        label: "proName",
      },
      discount: 100,
      DataList: [],
      DataList1: [],
      // 打印失败
      failList: [],
      // 打印成功
      successList: [],
      // 套餐提交按钮
      confirm: false,
      list1: true,
      activeName: "1",
      proIds: [],
      TotalPrice1: 0,
      numberList: [],
      tjOrderList: [],
      dialogVisible: false,
      // 遮罩层
      loading: true,
      tjNum: "",
      // 选中数组
      ids: [],
      // 非单个禁用
      single: true,
      // 非多个禁用
      multiple: true,
      // 显示搜索条件
      showSearch: true,
      userId: "",
      userIds: "",
      // 总条数
      total: 0,
      // 体检记录表格数据
      orderList: [],
      CompanyList: [],
      ordersList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      // 日期范围
      datetimerange: [],
      // 查询参数
      queryParams: {
        pageNum: 1,
        pageSize: 10,
        orderByColumn: "createTime",
        isAsc: "desc",
        tjType: undefined,
        tjNumber: undefined,
        firmId: undefined,
        createTime: undefined,
        finishTime: undefined,
        reportTime: undefined,
        djbeginTime: undefined,
        djendTime: undefined,
        name: undefined,
        tjNum: undefined,
      },
      startTime: "",
      // 表单参数
      form: {
        name: "",
      },
      // 表单校验
      rules: {},
      pickerOptions: {
        shortcuts: [
          {
            text: "最近一周",
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
              picker.$emit("pick", [start, end]);
            },
          },
          {
            text: "最近一个月",
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 30);
              picker.$emit("pick", [start, end]);
            },
          },
          {
            text: "最近三个月",
            onClick(picker) {
              const end = new Date();
              const start = new Date();
              start.setTime(start.getTime() - 3600 * 1000 * 24 * 90);
              picker.$emit("pick", [start, end]);
            },
          },
        ],
      },
    };
  },
  created() {
    // this.getNowTime();
    
    this.Company();
    this.getdate();
  },
  mounted() {
    this.$nextTick(() => {
      this.$refs.inputName.focus();
    });
  },
  methods: {
    getdate() {
      getNewDateList().then((res) => {
        this.createTimeList= [
          moment(res.data).format("YYYY-MM-DD 00:00:00"),
          moment(res.data).format("YYYY-MM-DD 23:59:00"),
        ];
        this.getList();
      });
    },
    // / 处理默认选中当前日期
    getNowTime() {
      var curDate = new Date().getTime();
      var dayNum = 7 * 24 * 3600 * 1000;
      var threeDays = curDate - dayNum;
      var sDay = this.getLocalTime(threeDays);
      var end = this.getLocalTime(curDate);
      this.createTimeList = [sDay, end];
    },
    add0(m) {
      return m < 10 ? "0" + m : m;
    },
    getLocalTime(nS) {
      var time = new Date(nS);
      var y = time.getFullYear();
      var m = time.getMonth() + 1;
      var d = time.getDate();
      var h = time.getHours();
      var mm = time.getMinutes();
      return (
        y +
        "-" +
        this.add0(m) +
        "-" +
        this.add0(d) +
        " " +
        this.add0(h) +
        ":" +
        this.add0(mm)
      );
    },
    /** 点击显示体检报告报表*/
    // viewReport() {
    //   const tjNumber = this.report;
    //   const viewNum = "792997692059705344";
    //   const params = { viewNum, tjNumber };
    //   hasReportEnd(tjNumber).then((res) => {
    //     if (res == 1) {
    //       this.$tab.openPage('体检报告', '/report/viewReport', params);
    //     } else {
    //       this.$message.error("该用户体检暂未完成,无法打印体检报告!");
    //     }
    //   });
    // },
 
    jiankangReport() {
      this.dialogVisiblese = true;
 
    },
    timjiao() {
      if (this.radios == "1") {
        this.mobanId = "912502827716915200";
      } else {
        this.mobanId = "912519857543262208";
      }
      const tjNum = this.report;
      const viewNum = this.mobanId;
      const params = { viewNum, tjNum };
      this.$tab.openPage("健康证检查表", "/report/jiankangzheng", params);
    },
    baogaoyulan() {
      const tjNumber = this.report[0];
      console.log(tjNumber)
      isPdfOrJimu(tjNumber).then((response) => {
        if (response.data.flag == "0") {
          const flag = true;
          getPdf(tjNumber, flag).then((response) => {
            if (response.size === 0) {
              const loading = this.$loading({
                lock: true,
                text: "Loading",
                spinner: "el-icon-loading",
                background: "rgba(0, 0, 0, 0.7)",
              });
              setTimeout(() => {
                loading.close();
              }, 3000);
              // this.$message.msgSuccess("报告正在生成,请两分钟后预览!");
              this.$message({
                message: "报告正在生成,请两分钟后预览!",
                type: "warning",
              });
            } else {
              this.dialogVisible = true;
 
              this.url = window.webkitURL.createObjectURL(response); //将后端返回的blob文件读取出url
            }
          });
        } else {
          let url = response.data.url
          const params = { url };
          this.$tab.openPage("健康证检查表", "/report/zongjianjiankangzheng", params);
        }
      })
 
    },
    //打印小票
    printHandle() {
      setTimeout(function () {
        const style = "@media print { @page{margin:0 10mm,size:4mm 6mm;}};"; //打印时去掉眉页眉尾
        printJS({
          printable: "printBill", // 标签元素id
          type: "html",
          header: "",
          targetStyles: ["*"],
          scanStyles: false, //打印必须加上,不然页面上的css样式无效
          style,
        });
      }, 100);
    },
 
    // 体检报告
    viewReport() {
      const flag = true;
      this.failList = [];
      this.form.name = "报告打印失败:";
 
      if (this.report.length == 1) {
        this.report.forEach((item) => {
          this.tjNumber = item;
        });
        getPdf(this.tjNumber, flag).then((response) => {
          if (response.size == 0) {
            // this.$message.error("该用户体检报告暂未完成!");
            this.dialogVisible = false;
            this.DataList1.forEach((item) => {
              if (item.tjNumber === this.tjNumber) {
                this.userId = item.tjCustomerName;
                this.form.name += item.tjCustomerName;
              }
            });
            this.failList.push({
              tjNumber: this.tjNumber,
              printStatus: 0,
              printBy: this.userId,
              createBy: this.userIds,
            });
          } else {
            this.dialogVisible = true;
            this.url = window.webkitURL.createObjectURL(response); //将后端返回的blob文件读取出url
            this.DataList1.forEach((item) => {
              if (item.tjNumber === this.tjNumber) {
                this.userId = item.tjCustomerName;
                // this.form.name += item.tjCustomerName
              }
            });
            this.failList.push({
              tjNumber: this.tjNumber,
              printStatus: 1,
              printBy: this.userId,
              createBy: this.userIds,
            });
          }
          this.joggle(this.failList);
          this.getList();
        });
      } else {
        for (let i = 0; i < this.report.length; i++) {
          if (i <= this.report.length) {
            this.tjNumber = this.report[i];
            getPdf(this.tjNumber, flag).then((response) => {
              if (response.size == 0) {
                this.failList = [];
                this.DataList1.forEach((item) => {
                  if (item.tjNumber === this.report[i]) {
                    this.userId = item.tjCustomerName;
                    if (this.form.name) {
                      this.form.name =
                        this.form.name + "," + item.tjCustomerName;
                    }
                  }
                });
                this.failList.push({
                  tjNumber: this.report[i],
                  printStatus: 0,
                  printBy: this.userId,
                  createBy: this.userIds,
                });
                this.joggle(this.failList);
                this.getList();
                // this.$message.error("该用户体检报告暂未完成!");
                this.dialogVisible = false;
              } else {
                this.failList = [];
                this.DataList1.forEach((item) => {
                  if (item.tjNumber === this.report[i]) {
                    this.userId = item.tjCustomerName;
                  }
                });
                this.failList.push({
                  tjNumber: this.report[i],
                  printStatus: 1,
                  printBy: this.userId,
                  createBy: this.userIds,
                });
                this.joggle(this.failList);
                this.getList();
                // this.dialogVisible = true;
                // this.url = window.webkitURL.createObjectURL(response); //将后端返回的blob文件读取出url
                const newBlob = [];
                newBlob.push(response);
                const blob = new Blob(newBlob, { type: "application/pdf" });
                var date = new Date().getTime();
                var ifr = document.createElement("iframe");
                ifr.style.frameborder = "no";
                ifr.style.display = "none";
                ifr.style.pageBreakBefore = "always";
                ifr.setAttribute("id", "printPdf" + date);
                ifr.setAttribute("name", "printPdf" + date);
                ifr.src = window.URL.createObjectURL(blob);
                document.body.appendChild(ifr);
                this.doPrint("printPdf" + date);
                window.URL.revokeObjectURL(ifr.src); // 释放URL 对象
              }
            });
          }
        }
      }
    },
 
    doPrint(val) {
      var ordonnance = document.getElementById(val).contentWindow;
      setTimeout(() => {
        ordonnance.print();
      }, 100);
    },
 
    joggle(failList) {
      getprint(failList).then((res) => { });
    },
 
    // 最近一次体检报告
    viewReport1() {
      const tjNumber = this.gation.tjNumber;
      const flag = true;
      getPdf(tjNumber, flag).then((response) => {
        if (response.size === 0) {
          this.$message.error("该用户体检报告暂未完成!");
          this.dialogVisible = false;
        } else {
          this.dialogVisible = true;
          this.url = window.webkitURL.createObjectURL(response); //将后端返回的blob文件读取出url
        }
      });
    },
 
    /** 点击显示导检单报表*/ //lige    开始
    handleReport() {
      const tjNumber = this.report;
      const viewNum = "792931586196398080";
      const params = { viewNum, tjNumber };
      hasReport(tjNumber).then((res) => {
        if (res == 1) {
          this.$tab.openPage("导诊单", "/report/breDailyReport", params);
        } else {
          this.$message.error("该用户暂无项目!");
        }
      });
    },
    // 采血单
    Collection() {
      let tjNumber = this.barcode;
      hasPrintCode(tjNumber).then((response) => {
        this.$message({
          showClose: true,
          message: "条码已生成!",
          type: "success",
        });
      });
    },
 
    // onSubmit() {
    //   console.log("submit!");
    // },
    dateChangebirthday1(val) {
      this.startTime = val;
    },
    /** 查询体检记录列表 */
    getList() {
      console.log(this.queryParams)
      this.queryParams.djbeginTime = this.createTimeList[0];
      this.queryParams.djendTime = this.createTimeList[1];
      this.loading = true;
      getInfo().then((response) => {
        this.userIds = response.user.userId;
      });
      getOrderListOO(this.queryParams).then((response) => {
        this.orderList = response.data.list;
        // if (this.orderList) {
        //   this.orderList.forEach((item, index) => {
        //     item.newID =
        //       (this.queryParams.pageNum - 1) * this.queryParams.pageSize +
        //       index +
        //       1;
        //   });
        // }
        this.total = response.data.total;
        this.loading = false;
      });
    },
    // 获取单位信息集合
    Company() {
      getCompany(this.queryParams).then((response) => {
        this.CompanyList = response.data;
      });
    },
 
    // 搜索
    getRemoteData(query) {
      if (query) {
        let compName = query;
        queryCompany(compName).then((response) => {
          this.CompanyList = response.data;
          this.CompanyList.forEach((item) => {
            this.queryParams = item;
          });
        });
      }
    },
    // 取消按钮
    cancel() {
      this.open = false;
      this.reset();
    },
    // 表单重置
    reset() {
      
      this.form = {
        orderId: null,
        tjType: null,
        tjNumber: null,
        tjSerialNumber: null,
        pacId: null,
        createTime: null,
        finishTime: null,
        updateTime: null,
        reportTime: null,
        createBy: null,
        updateBy: null,
        deleted: null,
        firmId: null,
        firmDeptName: null,
        firmWorkId: null,
        photo: null,
        name: null,
      };
      this.resetForm("form");
    },
    hb() {
      if (this.queryParams.tjNum != undefined) {
        this.handleQuery();
      }
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNum = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.createTimeList =[]
      this.resetForm("queryForm");
      this.handleQuery();
    },
    // 多选框选中数据
    handleSelectionChange(selection) {
      this.ids = selection.map((item) => item.orderId);
      this.DataList1 = this.$refs.multipleTable.selection;
      this.DataList1.forEach((item) => {
        this.barcode = item.tjNumber;
      });
      this.single = selection.length !== 1;
      // if (selection.length > 1) {
      //   let del_row = selection.shift()
      //   this.$refs.multipleTable.toggleRowSelection(del_row, false)
      // }
      this.multiple = !selection.length;
      this.report = selection.map((item) => item.tjNumber);
    },
 
    investigation(row) {
      this.gation = row;
      this.drawer = true;
    },
 
    /** 导出按钮操作 */
    handleExport() {
      this.download(
        "hosp/order/export",
        {
          ...this.queryParams,
        },
        `order_${new Date().getTime()}.xlsx`
      );
    },
  },
};
</script>
<style lang="scss">
.pag {
  width: 100%;
  display: flex;
  justify-content: center;
}
 
.pag1 {
  width: 30%;
}
 
.main {
  height: 700px;
  overflow: hidden;
}
 
#main111 .el-input__inner {
  border: none !important;
 
  box-shadow: none !important;
 
  padding: 0px; //前边边距去掉
}
 
#printIframe::-webkit-scrollbar {
  width: 6px;
}
 
/* 修改 滚动条的 下面 的 样式 */
#printIframe::-webkit-scrollbar-track {
  background-color: white;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
 
/* 修改 滑块 */
#printIframe::-webkit-scrollbar-thumb {
  background-color: #dcdfe6;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}
 
// .el-dialog {
//   width: 1000px;
//   min-height: 800px;
// }
 
// .el-dialog__header {
//   display: flex;
//   justify-content: space-between;
//   align-items: center;
// }
 
// .el-dialog__body {
//   padding: 0;
// }
 
.tab1 {
  width: 700px;
  display: flex;
  margin-top: 8px;
}
 
.drawer2 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 14px;
}
 
.drawer3 {
  height: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  font-size: 14px;
}
 
.drawer4 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
 
.drawer5 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
 
.drawer6 {
  width: 100%;
  height: 20px;
  border-top: 1px solid #dfe6ec;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
 
.drawer6 {
  display: flex;
  justify-content: center;
}
</style>