123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <div
- class="modal display_flex justify-content_flex-center align-items_center"
- *ngIf="show"
- >
- <div class="modalBody">
- <div class="title">
- 查看日志<i class="icon_transport transport-guanbi" (click)="hideModal()"></i>
- </div>
- <div class="content">
- <nz-table
- class="hospitalTable"
- [nzData]="historySpecimenList"
- nzSize="middle"
- [nzShowPagination]="false"
- [nzLoading]="hsLoading"
- >
- <thead>
- <tr class="thead">
- <th nzWidth="8%">序号</th>
- <th nzWidth="23%">动作</th>
- <th nzWidth="23%">时间</th>
- <th nzWidth="23%">备注</th>
- <th nzWidth="23%">操作人</th>
- </tr>
- </thead>
- <tbody>
- <tr *ngFor="let data of historySpecimenList; let i = index">
- <td>{{ i+(historySpecimenPageIndex-1) * historySpecimenPageSize + 1 }}</td>
- <td>{{ data.type?.name }}</td>
- <td>{{ data.time | date: "MM-dd HH:mm:ss" }}</td>
- <td>{{ data.remark }}</td>
- <td>{{ data.operationUserDTO?.name }}</td>
- </tr>
- </tbody>
- </nz-table>
- <div class="pagination">
- <nz-pagination
- [(nzPageIndex)]="historySpecimenPageIndex"
- [(nzTotal)]="historySpecimenListLength"
- [(nzPageSize)]="historySpecimenPageSize"
- (nzPageIndexChange)="getHistorySpecimen()"
- (nzPageSizeChange)="getHistorySpecimen()"
- >
- </nz-pagination>
- </div>
- </div>
- <div class="display_flex justify-content_flex-center">
- <button class="btn cancel" nz-button (click)="hideModal()">
- 关闭
- </button>
- </div>
- </div>
- </div>
|