edit
This commit is contained in:
@ -0,0 +1,22 @@
|
||||
<nz-table #groupingTable [nzData]="data" nzBordered nzSize="small" [nzFrontPagination]="false"
|
||||
[nzScroll]="{ x: '500px' }" [nzShowPagination]="false">
|
||||
<thead>
|
||||
<tr>
|
||||
<th nzWidth="200px" nzAlign="center">公里数</th>
|
||||
<th nzWidth="130px" nzAlign="center">计算方式</th>
|
||||
<th nzWidth="200px" nzAlign="center" *ngFor="let item of headers">车长(米)</th>
|
||||
<th nzWidth="60px" nzAlign="center" nzRight>操作</th>
|
||||
</tr>
|
||||
<tr>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr *ngFor="let item of groupingTable.data">
|
||||
<td nzWidth="200px" nzAlign="center">{{ item.startKm }} - {{ item.endKm }}</td>
|
||||
<td nzWidth="130px" nzAlign="center">{{ item.computeMode }}</td>
|
||||
<td nzWidth="200px" nzAlign="center" *ngFor="let node of item.configValue">最高{{ node.maxPrice }} 预警{{
|
||||
node.ewPrice }}</td>
|
||||
<td nzWidth="60px" nzAlign="center" nzRight>删除</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</nz-table>
|
||||
Reference in New Issue
Block a user