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.
25 lines
870 B
25 lines
870 B
4 years ago
|
<div class="box" style="height: 100%;">
|
||
|
<div *ngIf="!isnext" class="table">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th class="firstContent"></th>
|
||
|
<th>熟悉记录</th>
|
||
|
<th>记录时间</th>
|
||
|
<th>带队领导</th>
|
||
|
<th>上传人员</th>
|
||
|
<th>操作</th>
|
||
|
</tr>
|
||
|
<tr *ngFor="let item of tableData">
|
||
|
<td class="firstContent"><mat-checkbox></mat-checkbox></td>
|
||
|
<td class="overflowText">{{item.target}}</td>
|
||
|
<td class="overflowText">{{item.time}}</td>
|
||
|
<td>{{item.leadTheTeam}}</td>
|
||
|
<td>{{item.updateStaff}}</td>
|
||
|
<td class="fontColor" (click)='viewDetails()'>查看详情</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
<div *ngIf="isnext" class="app" style="height: 100%;">
|
||
|
<app-training-recordinfo></app-training-recordinfo>
|
||
|
</div>
|
||
|
</div>
|