|
@@ -18,8 +18,8 @@
|
18
|
18
|
</nz-select>
|
19
|
19
|
</div>
|
20
|
20
|
<div class="list-template__searchItem">
|
21
|
|
- <span class="label">配送人</span>:
|
22
|
|
- <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" nzPlaceHolder="请选择配送人" [(ngModel)]="searchDto.deliveryUser" nzAllowClear nzServerSearch nzShowSearch (nzOnSearch)="changeInp('patient', $event)" (nzOpenChange)="openChangePatient($event)" (ngModelChange)="setIsSelecting(true)">
|
|
21
|
+ <span class="label">送达人</span>:
|
|
22
|
+ <nz-select class="formItem" [nzDropdownMatchSelectWidth]="false" nzPlaceHolder="请选择送达人" [(ngModel)]="searchDto.deliveryUser" nzAllowClear nzServerSearch nzShowSearch (nzOnSearch)="changeInp('patient', $event)" (nzOpenChange)="openChangePatient($event)" (ngModelChange)="setIsSelecting(true)">
|
23
|
23
|
<ng-container *ngFor="let option of deliveryUserList">
|
24
|
24
|
<nz-option *ngIf="!isLoading" [nzLabel]="option.name" [nzValue]="option.id"></nz-option>
|
25
|
25
|
</ng-container>
|
|
@@ -55,8 +55,8 @@
|
55
|
55
|
<th nzWidth="10%">打包科室</th>
|
56
|
56
|
<th nzWidth="10%">检验科室</th>
|
57
|
57
|
<th nzWidth="10%">标本数</th>
|
58
|
|
- <th nzWidth="10%">配送人|配送时间</th>
|
59
|
|
- <th nzWidth="10%">接收人|接收时间</th>
|
|
58
|
+ <th nzWidth="10%">收取人|收取时间</th>
|
|
59
|
+ <th nzWidth="10%">送达人|送达时间</th>
|
60
|
60
|
<th nzWidth="10%">状态</th>
|
61
|
61
|
<th nzWidth="10%">工单号</th>
|
62
|
62
|
<th nzWidth="10%">操作</th>
|
|
@@ -69,10 +69,10 @@
|
69
|
69
|
<td>{{data.packDeptDTO?.dept}}</td>
|
70
|
70
|
<td>{{ data.endDeptNames }}</td>
|
71
|
71
|
<td>{{data.specimenNum}}</td>
|
72
|
|
- <td>{{ data.deliveryUserDTO?.name }}<br>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
73
|
72
|
<td>{{ data.receiveUserDTO?.name }}<br>{{ data.receiveTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
|
73
|
+ <td>{{ data.deliveryUserDTO?.name }}<br>{{ data.deliveryTime | date: 'yyyy-MM-dd HH:mm'}}</td>
|
74
|
74
|
<td>{{ data.status?.name }}</td>
|
75
|
|
- <td>{{ data.gdDTO?.gdcode }}</td>
|
|
75
|
+ <td class="clickable" (click)="detail($event, data.gdid)">{{ data.gdDTO?.gdcode }}</td>
|
76
|
76
|
<td>
|
77
|
77
|
<div class="coop">
|
78
|
78
|
<span (click)="showLogs(data)">查看日志</span>
|
|
@@ -101,3 +101,6 @@
|
101
|
101
|
[id]="packId"
|
102
|
102
|
(closeModelHs)="closeModelLog($event)"
|
103
|
103
|
></app-specimen-package-log-prompt-modal>
|
|
104
|
+
|
|
105
|
+<!-- 查看详情 -->
|
|
106
|
+<router-outlet></router-outlet>
|