seimin 2 年之前
父节点
当前提交
207cd71aba
共有 1 个文件被更改,包括 56 次插入25 次删除
  1. 56 25
      src/app/share/order-detail/order-detail.component.html

+ 56 - 25
src/app/share/order-detail/order-detail.component.html

@@ -317,7 +317,6 @@
317
                       class="ji"
317
                       class="ji"
318
                     />
318
                     />
319
                   </td>
319
                   </td>
320
-                  <!-- <td style="position: relative;">{{data.sendTime|date:'yyyy-MM-dd HH:mm'}}</td> -->
321
                 </tr>
320
                 </tr>
322
               </tbody>
321
               </tbody>
323
             </nz-table>
322
             </nz-table>
@@ -433,6 +432,16 @@
433
           </div>
432
           </div>
434
         </div>
433
         </div>
435
         <div class="bottom">
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
           <div class="table">
445
           <div class="table">
437
             <nz-table
446
             <nz-table
438
               [nzData]="orderInfo.specimenSet"
447
               [nzData]="orderInfo.specimenSet"
@@ -441,42 +450,44 @@
441
             >
450
             >
442
               <thead>
451
               <thead>
443
                 <tr class="thead">
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
                 </tr>
466
                 </tr>
457
               </thead>
467
               </thead>
458
               <tbody *ngIf="orderInfo.specimenSet">
468
               <tbody *ngIf="orderInfo.specimenSet">
459
                 <tr *ngFor="let data of orderInfo.specimenSet; let i = index">
469
                 <tr *ngFor="let data of orderInfo.specimenSet; let i = index">
460
                   <td>{{ i + 1 }}</td>
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
                   <td>
482
                   <td>
471
-                    {{ data.arriveTime | date: "MM-dd HH:mm"
472
-                    }}<img
483
+                    {{ data.checkDept ? data.checkDept.dept : "-" }}
484
+                    <img
473
                       *ngIf="data.urgent == 1"
485
                       *ngIf="data.urgent == 1"
474
                       src="../../assets/images/icon_ji.png"
486
                       src="../../assets/images/icon_ji.png"
475
                       alt=""
487
                       alt=""
476
                       class="ji"
488
                       class="ji"
477
                     />
489
                     />
478
                   </td>
490
                   </td>
479
-                  <!-- <td style="position: relative;">{{data.sendTime|date:'yyyy-MM-dd HH:mm'}}</td> -->
480
                 </tr>
491
                 </tr>
481
               </tbody>
492
               </tbody>
482
             </nz-table>
493
             </nz-table>
@@ -592,6 +603,16 @@
592
           </div>
603
           </div>
593
         </div>
604
         </div>
594
         <div class="bottom">
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
           <div class="table">
616
           <div class="table">
596
             <!-- 静配 -->
617
             <!-- 静配 -->
597
             <nz-table
618
             <nz-table
@@ -795,6 +816,16 @@
795
           </div>
816
           </div>
796
         </div>
817
         </div>
797
         <div class="bottom">
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
           <div class="info">
829
           <div class="info">
799
             <div nz-row class="top">
830
             <div nz-row class="top">
800
               <div class="left" nz-col nzSpan="12">
831
               <div class="left" nz-col nzSpan="12">