考核考试系统
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.
 
 
 
 
 

56 lines
2.5 KiB

<div class="content">
<div class="header">
<div class="queryBox">
<div class="queryField">
<label>考生姓名:</label>
<input type="text" placeholder="请输入考生姓名" [(ngModel)]="name" />
</div>
<div class="queryField">
<label>消防救援站:</label>
<nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 250px" [(ngModel)]="orId"
[nzNodes]="nodes" nzPlaceHolder="请选择">
</nz-tree-select>
<mat-checkbox color="primary" style="margin-left: 26px;" [(ngModel)]="orIdChecked">包含下级
</mat-checkbox>
</div>
<div class="queryField">
<button style="background-color: #07CDCF;" (click)="Submit()">查询</button>
<button style="margin-left: 10px; background-color: #FF8678;" (click)="Reset()">重置</button>
</div>
</div>
</div>
<div class="centertable">
<table>
<thead>
<th style="width: 15%;">编号</th>
<th style="width: 15%;">考生姓名</th>
<th style="width: 25%;">所属机构</th>
<th style="width: 15%;">综合素质评分</th>
<th style="width: 15%;">作战能力评分</th>
<th style="width: 15%;">综合评分</th>
</thead>
<tbody>
<tr *ngFor="let item of tabledataSource;let key = index">
<td>{{(PageNumber-1)*10+(key + 1)}}</td>
<td>{{item.examineeName || '/'}}</td>
<td>{{item.organizationName}}</td>
<td class="ratebox">
<nz-rate [ngModel]="item.overallQualityRating" [nzDisabled]="true"></nz-rate>
<div class="mask"></div>
</td>
<td class="ratebox">
<nz-rate [ngModel]="item.combatCapabilityRating" [nzDisabled]="true"></nz-rate>
<div class="mask"></div>
<td class="ratebox">
<nz-rate [ngModel]="item.overallRating" [nzDisabled]="true"></nz-rate>
<div class="mask"></div>
</td>
</tr>
</tbody>
</table>
<mat-paginator [length]="length" [pageSize]="10" (page)="chagePage($event)">
</mat-paginator>
</div>
</div>