5 changed files with 196 additions and 12 deletions
@ -1 +1,38 @@ |
|||||||
<p>student-exam-record works!</p> |
<!-- |
||||||
|
* @Descripttion: |
||||||
|
* @version: |
||||||
|
* @Author: sueRimn |
||||||
|
* @Date: 2020-12-20 16:26:44 |
||||||
|
* @LastEditors: sueRimn |
||||||
|
* @LastEditTime: 2020-12-23 13:53:33 |
||||||
|
--> |
||||||
|
<div class="content"> |
||||||
|
<div class="centertable"> |
||||||
|
<table > |
||||||
|
<thead> |
||||||
|
<th style="width: 20%;">试卷名称</th> |
||||||
|
<th style="width: 10%;">参加人</th> |
||||||
|
<th style="width: 20%;">考核队站</th> |
||||||
|
<th style="width: 20%;">考试时间</th> |
||||||
|
<th style="width: 15%;">考试成绩</th> |
||||||
|
<th style="width: 15%;">操作</th> |
||||||
|
</thead> |
||||||
|
<tbody> |
||||||
|
<tr *ngFor="let item of tabledataSource"> |
||||||
|
<td>{{item.name}}</td> |
||||||
|
<td>张三</td> |
||||||
|
<td>广西总队</td> |
||||||
|
<td>{{item.serverTime|date:'yyyy-MM-dd HH:mm'}}</td> |
||||||
|
<td style="color: #FF8678;">90分</td> |
||||||
|
<td style="color: #07CDCF;cursor: pointer;">查看</td> |
||||||
|
</tr> |
||||||
|
</tbody> |
||||||
|
|
||||||
|
</table> |
||||||
|
<mat-paginator [length]="length" |
||||||
|
[pageSize]="pageSize" |
||||||
|
[pageSizeOptions]="pageSizeOptions" |
||||||
|
(page)="chagePage($event)"> |
||||||
|
</mat-paginator> |
||||||
|
</div> |
||||||
|
</div> |
||||||
|
@ -0,0 +1,35 @@ |
|||||||
|
.content { |
||||||
|
width: 100%; |
||||||
|
height: 100%; |
||||||
|
overflow: hidden; |
||||||
|
background: #F2F5F6; |
||||||
|
overflow-y: auto; |
||||||
|
} |
||||||
|
.centertable{ |
||||||
|
width: 95%; |
||||||
|
margin-right: 40px; |
||||||
|
margin-left: 40px; |
||||||
|
margin-top: 40px; |
||||||
|
background-color: #FFFFFF; |
||||||
|
table{ |
||||||
|
width: 100%; |
||||||
|
td,th{ |
||||||
|
height: 48px; |
||||||
|
font-size: 16px; |
||||||
|
} |
||||||
|
td{ |
||||||
|
border-bottom: 1px solid #F2F5F6; |
||||||
|
text-align: center; |
||||||
|
} |
||||||
|
thead{ |
||||||
|
background-color:#F5FDFE; |
||||||
|
width: 100%; |
||||||
|
} |
||||||
|
.green{ |
||||||
|
color: #07CDCF; |
||||||
|
} |
||||||
|
.red{ |
||||||
|
color: #FF8678; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue