fix : 修改分摊汇总金额展示

This commit is contained in:
2024-06-23 01:02:27 +08:00
parent 058421bdd7
commit 74e1938d3c

View File

@@ -24,7 +24,8 @@
<el-table-column prop="afterTax" label="分摊金额" align="center">
<template #default="scope">
<div v-if="scope.row.afterTax !== null">
{{ toThousands(scope.row.afterTax) }}
<!-- {{ toThousands(scope.row.afterTax) }}-->
{{ scope.row.afterTax }}
</div>
</template>
</el-table-column>
@@ -70,7 +71,7 @@ const getSummaries = (param) => {
return prev
}
}, 0)}`
sums[index] = toThousands(sums[index])
// sums[index] = toThousands(sums[index])
} else {
sums[index] = '-'
}