<!-- * @Descripttion: * @version: * @Author: sueRimn * @Date: 2020-12-20 15:01:30 * @LastEditors: sueRimn * @LastEditTime: 2020-12-29 10:15:42 --> <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> <span *ngFor="let item of item.organizationNames" style="margin: 0 2px;"> {{item}} </span> </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> <span style="color: #07CDCF;cursor: pointer;" (click)='takeTest(item)'>参加考试</span> </td> </tr> </tbody> </table> <mat-paginator [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions" (page)="chagePage($event)"> </mat-paginator> </div> </div>