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

51 lines
1.6 KiB

<!--
* @Descripttion:
* @version:
* @Author: sueRimn
* @Date: 2020-12-14 17:21:02
* @LastEditors: sueRimn
* @LastEditTime: 2020-12-15 09:21:32
-->
<div class="content">
<div class="header">
<div class="queryBox">
<div class="queryField">
<label style="margin-right: 10px;font-size: 20px;">{{headtext}}</label>
</div>
</div>
</div>
<div class="centertable">
<table >
<thead>
<th style="width: 15%;">考试人</th>
<th style="width: 15%;">考核中队</th>
<th style="width: 15%;">交卷时间</th>
<th style="width: 15%;">是否已阅</th>
<th style="width: 15%;">分数</th>
<th style="width: 20%;">操作</th>
</thead>
<tbody>
<tr *ngFor="let item of dataSource">
<td>{{item.name}}</td>
<td>{{item.organization}}</td>
<td>{{item.startTime}}</td>
<td [ngClass]="{'green': item.testState == '已阅卷','red':item.testState == '未阅卷'}">{{item.testState}}</td>
<td>{{item.mark}}</td>
<td >
<span style="color: #01CFD5;">阅卷</span>
</td>
</tr>
</tbody>
</table>
<mat-paginator [length]="100"
[pageSize]="10"
[pageSizeOptions]="[10]">
</mat-paginator>
</div>
</div>