|
|
|
@ -50,9 +50,9 @@
|
|
|
|
|
<td>{{ data.companyName }}</td> |
|
|
|
|
<td class="progresssquare"> |
|
|
|
|
<nz-progress [nzShowInfo]="false" nzStrokeLinecap="square" nzStrokeWidth="16" nzStrokeColor="#42B983" |
|
|
|
|
[nzPercent]="data.integrity * 100"> |
|
|
|
|
[nzPercent]="(data.integrity * 100).toFixed()"> |
|
|
|
|
</nz-progress> |
|
|
|
|
<span class="num">{{data.integrity * 100}}%</span> |
|
|
|
|
<span class="num">{{(data.integrity * 100).toFixed()}}%</span> |
|
|
|
|
</td> |
|
|
|
|
<td>{{ data.organization.name }}</td> |
|
|
|
|
<td>{{ data.buildingType ? data.buildingType.buildingTypeName : ''}}</td> |
|
|
|
|