12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <div class="list-template">
- <div class="list-template__content">
- <div class="list-template__top" nz-row>
- <div nz-col nzXl='6' class="list-template__searchBox">
- </div>
- <div nz-col nzXl='18' class="list-template__btns">
- <button nz-button class="btn default" (click)='search()'>搜索</button>
- </div>
- </div>
- <div class="list-template__bottom">
- <nz-table class="list-template__nzTable" [nzData]="listOfData" nzSize="middle" [nzShowPagination]="false"
- [nzLoading]="loading1">
- <thead>
- <tr class="thead">
- <th nzWidth="10%">工单号</th>
- <th nzWidth="10%">申请科室</th>
- <th nzWidth="10%">操作类型</th>
- <th nzWidth="10%">操作人</th>
- <th nzWidth="10%">交接人</th>
- <th nzWidth="10%">操作时间</th>
- <th nzWidth="20%">备注</th>
- <th nzWidth="10%">图片</th>
- <th nzWidth="10%">操作</th>
- </tr>
- </thead>
- <tbody>
- <tr *ngFor="let data of listOfData;let index=index;">
- <td>{{ data.title }}</td>
- <td>{{ data.taskNames }}</td>
- <td>{{ data.deptNames }}</td>
- <td>{{ data.type?.name }}</td>
- <td>{{ data.type?.name }}</td>
- <td>{{ data.type?.name }}</td>
- <td>{{ data.type?.name }}</td>
- <td>{{ data.type?.name }}</td>
- <td>
- <div class="coop">
- <span (click)="del(data)">查看</span>
- </div>
- </td>
- </tr>
- </tbody>
- </nz-table>
- <div class="list-template__pagination">
- <nz-pagination [(nzPageIndex)]="pageIndex" [(nzTotal)]="listLength" nzShowSizeChanger [(nzPageSize)]="pageSize"
- (nzPageIndexChange)="getList()" (nzPageSizeChange)="getList()">
- </nz-pagination>
- </div>
- </div>
- </div>
- </div>
|