|
@@ -70,19 +70,21 @@
|
70
|
70
|
[nzLoading]="loading1">
|
71
|
71
|
<thead>
|
72
|
72
|
<tr class="thead">
|
73
|
|
- <th nzWidth="11%">医废类型</th>
|
74
|
|
- <th nzWidth="11%">序号</th>
|
75
|
|
- <th nzWidth="11%">重量(KG)</th>
|
76
|
|
- <th nzWidth="11%">科室名称</th>
|
|
73
|
+ <th nzWidth="5%">#</th>
|
|
74
|
+ <th nzWidth="10%">医废类型</th>
|
|
75
|
+ <th nzWidth="10%">序号</th>
|
|
76
|
+ <th nzWidth="10%">重量(KG)</th>
|
|
77
|
+ <th nzWidth="10%">科室名称</th>
|
77
|
78
|
<th nzWidth="11%">收取人</th>
|
78
|
79
|
<th nzWidth="11%">收取时间</th>
|
79
|
80
|
<th nzWidth="11%">医废状态</th>
|
80
|
|
- <th nzWidth="12%">备注</th>
|
|
81
|
+ <th nzWidth="11%">备注</th>
|
81
|
82
|
<th nzWidth="11%">操作</th>
|
82
|
83
|
</tr>
|
83
|
84
|
</thead>
|
84
|
85
|
<tbody>
|
85
|
|
- <tr *ngFor="let data of listOfData;let i = index">
|
|
86
|
+ <tr *ngFor="let data of listOfData;let index = index">
|
|
87
|
+ <td>{{index+(pageIndex-1) * pageSize + 1}}</td>
|
86
|
88
|
<td>{{ data.clinicalWasteType ? data.clinicalWasteType.typeName : '' }}</td>
|
87
|
89
|
<td>{{ data.clinicalWasteSn }}</td>
|
88
|
90
|
<td>{{ data.weight }}</td>
|