|
@@ -46,7 +46,7 @@
|
46
|
46
|
<!--<el-table-column label="问题整改率" align="center" prop="problemRectificationRate">-->
|
47
|
47
|
<el-table-column label="整改率" align="center" prop="problemRectificationRate">
|
48
|
48
|
<template #default="{ row }">
|
49
|
|
- {{ row.problemRectificationRate? (row.problemRectificationRate) * 100 + '%': ''}}
|
|
49
|
+ {{ row.problemRectificationRate? ((row.problemRectificationRate) * 100).toFixed(0) + '%': ''}}
|
50
|
50
|
</template>
|
51
|
51
|
</el-table-column>
|
52
|
52
|
</el-table>
|
|
@@ -73,7 +73,7 @@
|
73
|
73
|
</el-table-column>
|
74
|
74
|
<el-table-column label="问题整改率" align="center" prop="problemRectificationRate" show-overflow-tooltip>
|
75
|
75
|
<template #default="{ row }">
|
76
|
|
- {{ row.problemRectificationRate? row.problemRectificationRate * 100 + '%': ''}}
|
|
76
|
+ {{ row.problemRectificationRate? (row.problemRectificationRate * 100 ).toFixed(0)+ '%': ''}}
|
77
|
77
|
</template>
|
78
|
78
|
</el-table-column>
|
79
|
79
|
</el-table>
|