Browse Source

标本详情修改

seimin 3 years ago
parent
commit
7cd4e770d3
1 changed files with 7 additions and 5 deletions
  1. 7 5
      src/app/share/detail-sample/detail-sample.component.html

+ 7 - 5
src/app/share/detail-sample/detail-sample.component.html

@@ -57,13 +57,14 @@
57 57
           <thead>
58 58
             <tr class="thead">
59 59
               <th nzWidth="50px">序号</th>
60
+              <th nzWidth="95px">检验项目</th>
60 61
               <th nzWidth="95px">标本类型</th>
61 62
               <th nzWidth="110px">标本编码</th>
62 63
               <th nzWidth="88px">患者姓名</th>
63 64
               <th nzWidth="50px">床号</th>
64 65
               <th nzWidth="88px">目标科室</th>
65
-              <th nzWidth="75px">是否接收</th>
66
-              <th nzWidth="75px">是否送达</th>
66
+              <!-- <th nzWidth="75px">是否接收</th> -->
67
+              <!-- <th nzWidth="75px">是否送达</th> -->
67 68
               <th nzWidth="123px">接收扫描时间</th>
68 69
               <th nzWidth="123px">送达扫描时间</th>
69 70
             </tr>
@@ -71,13 +72,14 @@
71 72
           <tbody *ngIf="orderInfo.specimenSet">
72 73
             <tr *ngFor="let data of orderInfo.specimenSet;let i =index;">
73 74
               <td>{{i+1}}</td>
74
-              <td>{{data.stype.name}}</td>
75
+              <td>{{data.specimenDesc}}</td>
76
+              <td>{{data.stype?data.stype.name:''}}</td>
75 77
               <td>{{data.scode}}</td>
76 78
               <td>{{data.patientName}}</td>
77 79
               <td>{{data.bedNum}}</td>
78 80
               <td>{{!showCoop&&deptDisplay==2?data.checkDept.deptalias:data.checkDept.dept}}</td>
79
-              <td>{{data.received?"是":"否"}}</td>
80
-              <td>{{data.arrived?"是":"否"}}</td>
81
+              <!-- <td>{{data.received?"是":"否"}}</td> -->
82
+              <!-- <td>{{data.arrived?"是":"否"}}</td> -->
81 83
               <td>{{data.arriveTime?data.arriveTime:'-'}}</td>
82 84
               <td style="position: relative;">{{data.sendTime?data.sendTime:'-'}}<img *ngIf="data.urgent == 1"
83 85
                   src="../../assets/images/icon_ji.png" alt="" class="ji"></td>