4 changed files with 159 additions and 8 deletions
@ -1 +1,38 @@
|
||||
<p>student-index works!</p> |
||||
<!-- |
||||
* @Descripttion: |
||||
* @version: |
||||
* @Author: sueRimn |
||||
* @Date: 2020-12-20 15:01:30 |
||||
* @LastEditors: sueRimn |
||||
* @LastEditTime: 2020-12-21 17:10:56 |
||||
--> |
||||
<div class="content"> |
||||
<div class="centertable"> |
||||
<table > |
||||
<thead> |
||||
<th style="width: 15%;">试卷名称</th> |
||||
<th style="width: 15%;">考核队站</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.title}}</td> |
||||
<td>广西总队</td> |
||||
<td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td> |
||||
<td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td> |
||||
<td>{{item.duration}}分钟</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