|
@@ -52,14 +52,13 @@
|
52
|
52
|
<nz-table class="list-template__nzTable" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false" [nzLoading]="loading1">
|
53
|
53
|
<thead>
|
54
|
54
|
<tr class="thead">
|
55
|
|
- <th nzWidth="12.5%">科室信息</th>
|
56
|
|
- <th nzWidth="12.5%">患者信息</th>
|
57
|
|
- <th nzWidth="12.5%">护理信息</th>
|
58
|
|
- <th nzWidth="12.5%">预约时间</th>
|
59
|
|
- <th nzWidth="12.5%">出行方式</th>
|
60
|
|
- <th nzWidth="12.5%">检查项目</th>
|
61
|
|
- <th nzWidth="12.5%">签到信息</th>
|
62
|
|
- <th nzWidth="12.5%">状态</th>
|
|
55
|
+ <th nzWidth="14%">科室信息</th>
|
|
56
|
+ <th nzWidth="14%">患者信息</th>
|
|
57
|
+ <th nzWidth="14%">护理信息</th>
|
|
58
|
+ <th nzWidth="14%">出行方式</th>
|
|
59
|
+ <th nzWidth="16%">检查项目</th>
|
|
60
|
+ <th nzWidth="14%">签到信息</th>
|
|
61
|
+ <th nzWidth="14%">状态</th>
|
63
|
62
|
</tr>
|
64
|
63
|
</thead>
|
65
|
64
|
<tbody>
|
|
@@ -67,7 +66,6 @@
|
67
|
66
|
<td>{{data.deptName}}<br>{{data.deptDTO?.pcode}}</td>
|
68
|
67
|
<td>{{data.patientName}}<ng-container *ngIf="data.age !== undefined">({{data.age}}岁)</ng-container><br><ng-container *ngIf="data.patientType && data.patientType.value == 'I'">住:{{data.patientCode}}({{data.bedNum}})</ng-container><ng-container *ngIf="data.patientType && data.patientType.value == 'O'">门诊:{{data.patientCode}}</ng-container><ng-container *ngIf="data.patientType && data.patientType.value == 'E'">急:{{data.patientCode}}</ng-container></td>
|
69
|
68
|
<td>{{data.careLevel?.name}}<br>{{data.illnessState?.name}}</td>
|
70
|
|
- <td>{{data.yyTime | date:'yyyy-MM-dd HH:mm'}}</td>
|
71
|
69
|
<td>{{data.tripTypeDTO?.inspectMode}}</td>
|
72
|
70
|
<td><ng-container *ngFor="let item of data.inspectList;let last = last">{{item.inspectName}}<ng-container *ngIf="!last"><br></ng-container></ng-container></td>
|
73
|
71
|
<td>{{ data.signTime | date: "yyyy-MM-dd HH:mm" }}<br>{{ data.signDeptDTO?.dept }}<br>{{ data.signUserDTO?.name }}</td>
|