|
@@ -7,8 +7,8 @@
|
7
|
7
|
<input nz-input class="formItem" placeholder="请输入患者姓名" [(ngModel)]="searchCriteria.patientName" />
|
8
|
8
|
</div>
|
9
|
9
|
<div class="list-template__searchItem">
|
10
|
|
- <span class="label">检查床号:</span>
|
11
|
|
- <input nz-input class="formItem" placeholder="请输入检查床号" [(ngModel)]="searchCriteria.bedNum" />
|
|
10
|
+ <span class="label">检查单号:</span>
|
|
11
|
+ <input nz-input class="formItem" placeholder="请输入检查单号" [(ngModel)]="searchCriteria.inspectCode" />
|
12
|
12
|
</div>
|
13
|
13
|
<div class="list-template__searchItem">
|
14
|
14
|
<span class="label">支助人员:</span>
|
|
@@ -37,14 +37,13 @@
|
37
|
37
|
<th nzWidth="6%">序号</th>
|
38
|
38
|
<th nzWidth="10%">患者姓名</th>
|
39
|
39
|
<th nzWidth="10%">患者编码</th>
|
40
|
|
- <th nzWidth="7%">检查床号</th>
|
41
|
|
- <th nzWidth="7%">患者床号</th>
|
|
40
|
+ <th nzWidth="10%">检查单号</th>
|
|
41
|
+ <th nzWidth="10%">患者床号</th>
|
42
|
42
|
<th nzWidth="10%">检查项目</th>
|
43
|
|
- <th nzWidth="15%">预约时间</th>
|
44
|
|
- <th nzWidth="15%">到达时间</th>
|
|
43
|
+ <th nzWidth="12%">预约时间</th>
|
|
44
|
+ <th nzWidth="12%">到达时间</th>
|
45
|
45
|
<th nzWidth="10%">检查状态</th>
|
46
|
46
|
<th nzWidth="10%">支助人员</th>
|
47
|
|
- <!-- <th nzWidth="9%">操作</th> -->
|
48
|
47
|
</tr>
|
49
|
48
|
</thead>
|
50
|
49
|
<tbody>
|
|
@@ -52,14 +51,13 @@
|
52
|
51
|
<td>{{i+1}}</td>
|
53
|
52
|
<td>{{ data.patientName||'-' }}</td>
|
54
|
53
|
<td>{{ data.patientCode||'-' }}</td>
|
55
|
|
- <td>{{ data.bedNum||'-' }}</td>
|
|
54
|
+ <td>{{ data.inspectCode||'-' }}</td>
|
56
|
55
|
<td>{{ data.patientBedNum||'-' }}</td>
|
57
|
56
|
<td>{{data.inspectName||'-'}}</td>
|
58
|
57
|
<td>{{ data.yyTime||'-' }}</td>
|
59
|
58
|
<td>{{data.arriveTime||'-'}}</td>
|
60
|
59
|
<td>{{ data.inspectState?data.inspectState.name:''}}</td>
|
61
|
60
|
<td>{{ data.workerName||'-' }}</td>
|
62
|
|
- <!-- <td><button (click)="viewSpecimenHistory(data)">查看</button></td> -->
|
63
|
61
|
</tr>
|
64
|
62
|
</tbody>
|
65
|
63
|
</nz-table>
|