|
|
|
|
@ -72,9 +72,9 @@
|
|
|
|
|
{{ formatNumber(scope.row.subsidyCosts) }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="subtotalCosts" label="小计(万元)" width="100">
|
|
|
|
|
<el-table-column prop="subtotalCosts" label="小计(元)" width="100">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
{{ format2TenThousandNumber(scope.row.subtotalCosts) }}
|
|
|
|
|
{{ formatNumber(scope.row.subtotalCosts) }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
@ -127,9 +127,9 @@
|
|
|
|
|
{{ formatNumber(scope.row.reduceSubsidyCosts) }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="reduceSubtotalCosts" label="小计(万元)" width="100">
|
|
|
|
|
<el-table-column prop="reduceSubtotalCosts" label="小计(元)" width="100">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
{{ format2TenThousandNumber(scope.row.reduceSubtotalCosts) }}
|
|
|
|
|
{{ formatNumber(scope.row.reduceSubtotalCosts) }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
@ -334,7 +334,7 @@ const getSummaries = (param: any) => {
|
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
|
|
if (column.property === 'subtotalCosts' || column.property === 'reduceSubtotalCosts') {
|
|
|
|
|
sums[index] = format2TenThousandNumber(sums[index]);
|
|
|
|
|
sums[index] = formatNumber(sums[index]);
|
|
|
|
|
} else {
|
|
|
|
|
sums[index] = formatNumber(sums[index]);
|
|
|
|
|
}
|
|
|
|
|
|