|
@@ -22,13 +22,12 @@
|
22
|
22
|
<tr class="thead">
|
23
|
23
|
<th nzWidth="13%">包号</th>
|
24
|
24
|
<th nzWidth="6%">打包人</th>
|
25
|
|
- <th nzWidth="12%">打包时间</th>
|
26
|
|
- <th nzWidth="9%">申请单数</th>
|
|
25
|
+ <th nzWidth="15%">打包时间</th>
|
27
|
26
|
<th nzWidth="6%">标本数</th>
|
28
|
27
|
<th nzWidth="6%">配送人</th>
|
29
|
|
- <th nzWidth="12%">配送时间</th>
|
|
28
|
+ <th nzWidth="15%">配送时间</th>
|
30
|
29
|
<th nzWidth="6%">接收人</th>
|
31
|
|
- <th nzWidth="12%">接收时间</th>
|
|
30
|
+ <th nzWidth="15%">接收时间</th>
|
32
|
31
|
<th nzWidth="8%">状态</th>
|
33
|
32
|
<th nzWidth="10%">操作</th>
|
34
|
33
|
</tr>
|
|
@@ -38,7 +37,6 @@
|
38
|
37
|
<td>{{ data.packCode }}</td>
|
39
|
38
|
<td>{{ data.packUserDTO?.name }}</td>
|
40
|
39
|
<td>{{ data.packTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
41
|
|
- <td>{{ data.pathologyFormNum }}</td>
|
42
|
40
|
<td>{{ data.specimenNum }}</td>
|
43
|
41
|
<td>{{ data.deliveryUserDTO?.name }}</td>
|
44
|
42
|
<td>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
@@ -47,7 +45,7 @@
|
47
|
45
|
<td>{{ data.status?.name }}</td>
|
48
|
46
|
<td>
|
49
|
47
|
<div class="coop">
|
50
|
|
- <span (click)="printPackageByConfig(data)">补打</span>
|
|
48
|
+ <span (click)="printPackageByConfig(data)" *ngIf="data.status.value !== '0'">补打</span>
|
51
|
49
|
<span (click)="toSpecimenPackage(data)" *ngIf="data.status.value === '0' || data.status.value === '1'">修改</span>
|
52
|
50
|
</div>
|
53
|
51
|
</td>
|