|
@@ -113,17 +113,16 @@
|
|
|
label="实际完成投资额(万)"
|
|
|
align="center"
|
|
|
prop="reality"
|
|
|
- width="130px"
|
|
|
>
|
|
|
<template slot-scope="scope">
|
|
|
{{ scope.row.reality }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="年度投资完成百分比" align="center" prop="retio">
|
|
|
+ <el-table-column label="投资完成百分比" align="center" prop="retio">
|
|
|
<template slot-scope="scope">
|
|
|
{{
|
|
|
scope.row.retio
|
|
|
- ? scope.row.retio.toFixed(2) * 100 + "%"
|
|
|
+ ? (scope.row.retio * 100).toFixed(2) + "%"
|
|
|
: scope.row.retio
|
|
|
}}
|
|
|
</template>
|