|
@@ -158,36 +158,45 @@
|
158
|
158
|
<thead (nzSortChange)="sort($event)" nzSingleSort>
|
159
|
159
|
<tr class="thead">
|
160
|
160
|
<th nzWidth="4%">序号</th>
|
161
|
|
- <th nzWidth="8%">申请科室</th>
|
|
161
|
+ <th>科室信息</th>
|
162
|
162
|
<th nzWidth="7%">患者姓名</th>
|
163
|
|
- <th nzWidth="5%">标本编码</th>
|
164
|
|
- <th nzWidth="8%">检验项目</th>
|
|
163
|
+ <th>标本信息</th>
|
|
164
|
+ <th>采集信息</th>
|
165
|
165
|
<th nzWidth="8%">标本类型</th>
|
166
|
|
- <th nzWidth="5%">状态</th>
|
167
|
|
- <th nzWidth="8%" nzShowSort nzSortKey="arrive_time" [(nzSort)]="sortCurrent.arrive_time">收取时间</th>
|
168
|
|
- <th nzWidth="8%">收取人</th>
|
|
166
|
+ <th nzWidth="7%">状态</th>
|
|
167
|
+ <th nzShowSort nzSortKey="arrive_time" [(nzSort)]="sortCurrent.arrive_time">收取信息</th>
|
169
|
168
|
<th nzWidth="8%">中转时间</th>
|
170
|
|
- <th nzWidth="8%">送达时间</th>
|
171
|
|
- <th nzWidth="8%">送达人</th>
|
172
|
|
- <th nzWidth="8%">终点科室</th>
|
|
169
|
+ <th>送达信息</th>
|
173
|
170
|
<th nzWidth="7%"></th>
|
174
|
171
|
</tr>
|
175
|
172
|
</thead>
|
176
|
173
|
<tbody>
|
177
|
174
|
<tr *ngFor="let data of listOfData; let i = index">
|
178
|
175
|
<td>{{i+(pageIndex-1) * pageSize + 1}}</td>
|
179
|
|
- <td>{{ data.sickRoom ? data.sickRoom.dept : "-" }}</td>
|
|
176
|
+ <td>
|
|
177
|
+ <div>{{ data.sickRoom ? data.sickRoom.dept : "-" }}</div>
|
|
178
|
+ <div>{{ data.checkDept ? data.checkDept.dept : "-" }}</div>
|
|
179
|
+ </td>
|
180
|
180
|
<td>{{ data.patientName}}<span *ngIf="data.bedNum">({{data.bedNum}})</span><br>{{data.residenceNo}}</td>
|
181
|
|
- <td>{{ data.scode || "-" }}</td>
|
182
|
|
- <td>{{ data.specimenDesc || "-" }}</td>
|
183
|
|
- <td>{{ data.stype ? data.stype.name : "-" }}</td>
|
|
181
|
+ <td>
|
|
182
|
+ <div>{{ data.scode || "-" }}</div>
|
|
183
|
+ <div>{{ data.specimenDesc || "-" }}</div>
|
|
184
|
+ </td>
|
|
185
|
+ <td>
|
|
186
|
+ <div>{{ data.collectNurseName || "-" }}</div>
|
|
187
|
+ <div>{{ data.printDate || "-" }}</div>
|
|
188
|
+ </td>
|
|
189
|
+ <td>{{ data.stype ? data.stype.name : "-" }}<span *ngIf="data.tubeType">,</span>{{data.tubeType && data.tubeType.name}}</td>
|
184
|
190
|
<td>{{ data.speState ? data.speState.name : "-" }}</td>
|
185
|
|
- <td>{{ data.arriveTime || "-" }}</td>
|
186
|
|
- <td>{{ data.receiverName || "-" }}</td>
|
|
191
|
+ <td>
|
|
192
|
+ <div>{{ data.receiverName || "-" }}</div>
|
|
193
|
+ <div>{{ data.arriveTime || "-" }}</div>
|
|
194
|
+ </td>
|
187
|
195
|
<td>{{ data.transTime || '-' }}</td>
|
188
|
|
- <td>{{ data.sendTime || '-' }}</td>
|
189
|
|
- <td>{{ data.delivererName || "-" }}</td>
|
190
|
|
- <td>{{ data.checkDept ? data.checkDept.dept : "-" }}</td>
|
|
196
|
+ <td>
|
|
197
|
+ <div>{{ data.delivererName || "-" }}</div>
|
|
198
|
+ <div>{{ data.sendTime || '-' }}</div>
|
|
199
|
+ </td>
|
191
|
200
|
<td><button (click)="viewSpecimenHistory(data)">查看</button></td>
|
192
|
201
|
</tr>
|
193
|
202
|
</tbody>
|