|
@@ -35,22 +35,26 @@
|
35
|
35
|
<thead>
|
36
|
36
|
<tr class="thead">
|
37
|
37
|
<th nzWidth="6%">序号</th>
|
38
|
|
- <th nzWidth="10%">患者姓名</th>
|
39
|
|
- <th nzWidth="10%">患者编码</th>
|
40
|
|
- <th nzWidth="10%">检查单号</th>
|
41
|
|
- <th nzWidth="10%">患者床号</th>
|
42
|
|
- <th nzWidth="10%">检查项目</th>
|
43
|
|
- <th nzWidth="12%">预约时间</th>
|
44
|
|
- <th nzWidth="12%">到达时间</th>
|
45
|
|
- <th nzWidth="10%">检查状态</th>
|
46
|
|
- <th nzWidth="10%">支助人员</th>
|
|
38
|
+ <th nzWidth="8%">患者姓名</th>
|
|
39
|
+ <th nzWidth="8%">住院号</th>
|
|
40
|
+ <th nzWidth="8%">申请科室</th>
|
|
41
|
+ <th nzWidth="8%">检查科室</th>
|
|
42
|
+ <th nzWidth="8%">检查单号</th>
|
|
43
|
+ <th nzWidth="8%">患者床号</th>
|
|
44
|
+ <th nzWidth="8%">检查项目</th>
|
|
45
|
+ <th nzWidth="11%">预约时间</th>
|
|
46
|
+ <th nzWidth="11%">到达时间</th>
|
|
47
|
+ <th nzWidth="8%">检查状态</th>
|
|
48
|
+ <th nzWidth="8%">支助人员</th>
|
47
|
49
|
</tr>
|
48
|
50
|
</thead>
|
49
|
51
|
<tbody>
|
50
|
52
|
<tr *ngFor="let data of listOfData;let i = index">
|
51
|
53
|
<td>{{i+1}}</td>
|
52
|
54
|
<td>{{ data.patientName||'-' }}</td>
|
53
|
|
- <td>{{ data.patientCode||'-' }}</td>
|
|
55
|
+ <td>{{ data.residenceNo||'-' }}</td>
|
|
56
|
+ <td>{{ data.applyDept ? data.applyDept.dept : '-' }}</td>
|
|
57
|
+ <td>{{ data.execDept ? data.execDept.dept : '-' }}</td>
|
54
|
58
|
<td>{{ data.inspectCode||'-' }}</td>
|
55
|
59
|
<td>{{ data.patientBedNum||'-' }}</td>
|
56
|
60
|
<td>{{data.inspectName||'-'}}</td>
|