patient-log-prompt-modal.component.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <div
  2. class="modal display_flex justify-content_flex-center align-items_center"
  3. *ngIf="show"
  4. >
  5. <div class="modalBody">
  6. <div class="title">
  7. 查看日志<i class="icon_transport transport-guanbi" (click)="hideModal()"></i>
  8. </div>
  9. <div class="content">
  10. <nz-table
  11. class="hospitalTable"
  12. [nzData]="historySpecimenList"
  13. nzSize="middle"
  14. [nzShowPagination]="false"
  15. [nzLoading]="hsLoading"
  16. >
  17. <thead>
  18. <tr class="thead">
  19. <th nzWidth="8%">序号</th>
  20. <th nzWidth="23%">动作</th>
  21. <th nzWidth="23%">时间</th>
  22. <th nzWidth="23%">备注</th>
  23. <th nzWidth="23%">操作人</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr *ngFor="let data of historySpecimenList; let i = index">
  28. <td>{{ i+(historySpecimenPageIndex-1) * historySpecimenPageSize + 1 }}</td>
  29. <td>{{ data.type?.name }}</td>
  30. <td>{{ data.time | date: "MM-dd HH:mm:ss" }}</td>
  31. <td>{{ data.remark }}</td>
  32. <td>{{ data.operationUserDTO?.name }}</td>
  33. </tr>
  34. </tbody>
  35. </nz-table>
  36. <div class="pagination">
  37. <nz-pagination
  38. [(nzPageIndex)]="historySpecimenPageIndex"
  39. [(nzTotal)]="historySpecimenListLength"
  40. [(nzPageSize)]="historySpecimenPageSize"
  41. (nzPageIndexChange)="getHistorySpecimen()"
  42. (nzPageSizeChange)="getHistorySpecimen()"
  43. >
  44. </nz-pagination>
  45. </div>
  46. </div>
  47. <div class="display_flex justify-content_flex-center">
  48. <button class="btn cancel" nz-button (click)="hideModal()">
  49. 关闭
  50. </button>
  51. </div>
  52. </div>
  53. </div>