济南项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

70 lines
3.4 KiB

<!-- <p>任务执行!</p> -->
<div class="box">
<div class="fffbox">
<div class="header">
<span>
任务执行
</span>
<span style="font-size: 14px; color: #42B983;">
<i nz-icon nzType="info-circle" nzTheme="outline"></i>
任务申请已开始!剩余时间 3天13小时 / 生成周计划已开始!剩余时间 23:54:03
</span>
</div>
<div class="searchbox">
<div class="search">
<input type="text" nz-input placeholder="任务名称" [(ngModel)]="searchForm.taskname" />
<input type="text" nz-input placeholder="单位名称" [(ngModel)]="searchForm.unitname" />
<input type="text" nz-input placeholder="单位级别" [(ngModel)]="searchForm.unitlevel" />
<input type="text" nz-input placeholder="协助机构" [(ngModel)]="searchForm.or" />
<input type="text" nz-input placeholder="时间" [(ngModel)]="searchForm.tasktime" />
<button nz-button nzType="primary"><i nz-icon nzType="search" nzTheme="outline"></i>查询</button>
<button nz-button nzType="default"><i nz-icon nzType="reload" nzTheme="outline"></i>重置</button>
</div>
</div>
<div class="content">
<div class="tablebox">
<nz-table nzBordered #basicTable [nzLoading]="loading" [nzData]="usersLIst" [nzShowPagination]='false'
[nzPageSize]='16'>
<thead>
<tr>
<th [width]="'15%'">任务名称</th>
<th [width]="'10%'">时间</th>
<th [width]="'20%'">单位名称</th>
<th>单位级别</th>
<th>协助机构</th>
<th>检查结果</th>
<th [width]="'8%'">操作</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let item of basicTable.data">
<td>监督检查</td>
<td>2022.07.20 14:00</td>
<td nzBreakWord>
上海雅特酒店管理有限公司济南泺文路分公司
</td>
<td>
一般单位
</td>
<td>
历下区A消防救援站
</td>
<td>
未发现违法违规情况
</td>
<td class="operation">
<a class="blue">查看</a>
</td>
</tr>
</tbody>
</nz-table>
</div>
<div class="pagination">
<nz-pagination [nzHideOnSinglePage]="false" [nzPageIndex]="1" [nzTotal]="usersNum" [nzPageSize]="16"
[nzShowTotal]="totalTemplate" nzShowQuickJumper (nzPageIndexChange)="pageChange($event)">
</nz-pagination>
<ng-template #totalTemplate let-total> 16条/页,共{{usersNum}}条 </ng-template>
</div>
</div>
</div>
</div>