|
@@ -28,19 +28,21 @@
|
28
|
28
|
[nzLoading]="loading1">
|
29
|
29
|
<thead>
|
30
|
30
|
<tr class="thead">
|
|
31
|
+ <th nzWidth="5%">序号</th>
|
31
|
32
|
<th nzWidth="10%">工单号</th>
|
32
|
33
|
<th nzWidth="10%">申请科室</th>
|
33
|
34
|
<th nzWidth="10%">操作类型</th>
|
34
|
35
|
<th nzWidth="10%">操作人</th>
|
35
|
36
|
<th nzWidth="10%">交接人</th>
|
36
|
37
|
<th nzWidth="10%">操作时间</th>
|
37
|
|
- <th nzWidth="20%">备注</th>
|
|
38
|
+ <th nzWidth="15%">备注</th>
|
38
|
39
|
<th nzWidth="10%">图片</th>
|
39
|
40
|
<th nzWidth="10%">操作</th>
|
40
|
41
|
</tr>
|
41
|
42
|
</thead>
|
42
|
43
|
<tbody>
|
43
|
44
|
<tr *ngFor="let data of listOfData;let index=index;">
|
|
45
|
+ <td>{{index+(pageIndex-1) * pageSize + 1}}</td>
|
44
|
46
|
<td>{{ data.gdcode }}</td>
|
45
|
47
|
<td>{{ data.createDept?.dept }}</td>
|
46
|
48
|
<td>{{ data.operation?.name }}</td>
|