|
@@ -317,7 +317,6 @@
|
317
|
317
|
class="ji"
|
318
|
318
|
/>
|
319
|
319
|
</td>
|
320
|
|
- <!-- <td style="position: relative;">{{data.sendTime|date:'yyyy-MM-dd HH:mm'}}</td> -->
|
321
|
320
|
</tr>
|
322
|
321
|
</tbody>
|
323
|
322
|
</nz-table>
|
|
@@ -433,6 +432,16 @@
|
433
|
432
|
</div>
|
434
|
433
|
</div>
|
435
|
434
|
<div class="bottom">
|
|
435
|
+ <div class="amplification">
|
|
436
|
+ <button
|
|
437
|
+ nz-button
|
|
438
|
+ nzType="primary"
|
|
439
|
+ class="btn default"
|
|
440
|
+ (click)="amplification()"
|
|
441
|
+ >
|
|
442
|
+ {{ amplificationShow ? "放大" : "还原" }}
|
|
443
|
+ </button>
|
|
444
|
+ </div>
|
436
|
445
|
<div class="table">
|
437
|
446
|
<nz-table
|
438
|
447
|
[nzData]="orderInfo.specimenSet"
|
|
@@ -441,42 +450,44 @@
|
441
|
450
|
>
|
442
|
451
|
<thead>
|
443
|
452
|
<tr class="thead">
|
444
|
|
- <th nzWidth="50px">序号</th>
|
445
|
|
- <th nzWidth="95px">检验项目</th>
|
446
|
|
- <th nzWidth="95px">标本类型</th>
|
447
|
|
- <th nzWidth="110px">标本编码</th>
|
448
|
|
- <th nzWidth="88px">患者姓名</th>
|
449
|
|
- <th nzWidth="88px">住院号</th>
|
450
|
|
- <th nzWidth="50px">床号</th>
|
451
|
|
- <th nzWidth="88px">目标科室</th>
|
452
|
|
- <!-- <th nzWidth="75px">是否接收</th> -->
|
453
|
|
- <!-- <th nzWidth="75px">是否送达</th> -->
|
454
|
|
- <th nzWidth="123px">接收扫描时间</th>
|
455
|
|
- <!-- <th nzWidth="123px">送达扫描时间</th> -->
|
|
453
|
+ <th nzWidth="4%">序号</th>
|
|
454
|
+ <th nzWidth="8%">申请科室</th>
|
|
455
|
+ <th nzWidth="7%">患者姓名</th>
|
|
456
|
+ <th nzWidth="5%">标本编码</th>
|
|
457
|
+ <th nzWidth="8%">检验项目</th>
|
|
458
|
+ <th nzWidth="8%">标本类型</th>
|
|
459
|
+ <th nzWidth="5%">状态</th>
|
|
460
|
+ <th nzWidth="8%">收取时间</th>
|
|
461
|
+ <th nzWidth="8%">收取人</th>
|
|
462
|
+ <th nzWidth="8%">中转时间</th>
|
|
463
|
+ <th nzWidth="8%">送达时间</th>
|
|
464
|
+ <th nzWidth="8%">送达人</th>
|
|
465
|
+ <th nzWidth="8%">终点科室</th>
|
456
|
466
|
</tr>
|
457
|
467
|
</thead>
|
458
|
468
|
<tbody *ngIf="orderInfo.specimenSet">
|
459
|
469
|
<tr *ngFor="let data of orderInfo.specimenSet; let i = index">
|
460
|
470
|
<td>{{ i + 1 }}</td>
|
461
|
|
- <td>{{ data.specimenDesc }}</td>
|
462
|
|
- <td>{{ data.stype ? data.stype.name : "" }}</td>
|
463
|
|
- <td>{{ data.scode }}</td>
|
464
|
|
- <td>{{ data.patientName }}</td>
|
465
|
|
- <td>{{ data.residenceNo }}</td>
|
466
|
|
- <td>{{ data.bedNum }}</td>
|
467
|
|
- <td>{{ data.checkDept.dept }}</td>
|
468
|
|
- <!-- <td>{{data.received?"是":"否"}}</td> -->
|
469
|
|
- <!-- <td>{{data.arrived?"是":"否"}}</td> -->
|
|
471
|
+ <td>{{ data.sickRoom ? data.sickRoom.dept : "-" }}</td>
|
|
472
|
+ <td>{{ data.patientName}}<span *ngIf="data.bedNum">({{data.bedNum}})</span><br>{{data.residenceNo}}</td>
|
|
473
|
+ <td>{{ data.scode || "-" }}</td>
|
|
474
|
+ <td>{{ data.specimenDesc || "-" }}</td>
|
|
475
|
+ <td>{{ data.stype ? data.stype.name : "-" }}</td>
|
|
476
|
+ <td>{{ data.speState ? data.speState.name : "-" }}</td>
|
|
477
|
+ <td>{{ data.arriveTime || "-" }}</td>
|
|
478
|
+ <td>{{ data.receiverName || "-" }}</td>
|
|
479
|
+ <td>{{ data.transTime || '-' }}</td>
|
|
480
|
+ <td>{{ data.sendTime || '-' }}</td>
|
|
481
|
+ <td>{{ data.delivererName || "-" }}</td>
|
470
|
482
|
<td>
|
471
|
|
- {{ data.arriveTime | date: "MM-dd HH:mm"
|
472
|
|
- }}<img
|
|
483
|
+ {{ data.checkDept ? data.checkDept.dept : "-" }}
|
|
484
|
+ <img
|
473
|
485
|
*ngIf="data.urgent == 1"
|
474
|
486
|
src="../../assets/images/icon_ji.png"
|
475
|
487
|
alt=""
|
476
|
488
|
class="ji"
|
477
|
489
|
/>
|
478
|
490
|
</td>
|
479
|
|
- <!-- <td style="position: relative;">{{data.sendTime|date:'yyyy-MM-dd HH:mm'}}</td> -->
|
480
|
491
|
</tr>
|
481
|
492
|
</tbody>
|
482
|
493
|
</nz-table>
|
|
@@ -592,6 +603,16 @@
|
592
|
603
|
</div>
|
593
|
604
|
</div>
|
594
|
605
|
<div class="bottom">
|
|
606
|
+ <div class="amplification">
|
|
607
|
+ <button
|
|
608
|
+ nz-button
|
|
609
|
+ nzType="primary"
|
|
610
|
+ class="btn default"
|
|
611
|
+ (click)="amplification()"
|
|
612
|
+ >
|
|
613
|
+ {{ amplificationShow ? "放大" : "还原" }}
|
|
614
|
+ </button>
|
|
615
|
+ </div>
|
595
|
616
|
<div class="table">
|
596
|
617
|
<!-- 静配 -->
|
597
|
618
|
<nz-table
|
|
@@ -795,6 +816,16 @@
|
795
|
816
|
</div>
|
796
|
817
|
</div>
|
797
|
818
|
<div class="bottom">
|
|
819
|
+ <div class="amplification">
|
|
820
|
+ <button
|
|
821
|
+ nz-button
|
|
822
|
+ nzType="primary"
|
|
823
|
+ class="btn default"
|
|
824
|
+ (click)="amplification()"
|
|
825
|
+ >
|
|
826
|
+ {{ amplificationShow ? "放大" : "还原" }}
|
|
827
|
+ </button>
|
|
828
|
+ </div>
|
798
|
829
|
<div class="info">
|
799
|
830
|
<div nz-row class="top">
|
800
|
831
|
<div class="left" nz-col nzSpan="12">
|