|
@@ -3814,7 +3814,8 @@ export default {
|
|
|
index === 13 ||
|
|
|
index === 14 ||
|
|
|
index === 11 ||
|
|
|
- index === 12
|
|
|
+ index === 12 ||
|
|
|
+ index === 15
|
|
|
) {
|
|
|
const values = data.map((item) => Number(item[column.property]));
|
|
|
if (!values.every((value) => isNaN(value))) {
|
|
@@ -3826,9 +3827,12 @@ export default {
|
|
|
return prev;
|
|
|
}
|
|
|
}, 0);
|
|
|
- if (index === 13 || index === 14) {
|
|
|
+ if (index === 14 || index === 15) {
|
|
|
sums[index] = (sums[index] / 1000).toFixed(2) + "(吨)";
|
|
|
}
|
|
|
+ if (index === 13) {
|
|
|
+ sums[index] = sums[index];
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
});
|