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.
27 lines
759 B
27 lines
759 B
5 years ago
|
<div class="content">
|
||
|
<header><img src="../../../assets/images/tophead.png"></header>
|
||
|
|
||
|
<div class="center">
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th *ngFor="let header of headers">{{header}}</th>
|
||
|
</tr>
|
||
|
<tr *ngFor="let item of tableData">
|
||
|
<td>{{item.order}}</td>
|
||
|
<td>{{item.fireName}}</td>
|
||
|
<td>{{item.drawLotsOrder}}</td>
|
||
|
<td>{{item.testTime}}</td>
|
||
|
<td>
|
||
|
<p *ngFor="let items of item.num" class="bottomBorder">{{items}}</p>
|
||
|
</td>
|
||
|
<td>
|
||
|
<p *ngFor="let items of item.name" class="bottomBorder">{{items}}</p>
|
||
|
</td>
|
||
|
<td>
|
||
|
<p *ngFor="let items of item.seatNum" class="bottomBorder">{{items}}</p>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</div>
|
||
|
|
||
|
</div>
|