|
@@ -996,10 +996,10 @@ export default {
|
|
}
|
|
}
|
|
}, 0);
|
|
}, 0);
|
|
if (column.property === "fGrossweight") {
|
|
if (column.property === "fGrossweight") {
|
|
- sums[index] = sums[index].toFixed(4) + "吨";
|
|
|
|
|
|
+ sums[index] = (sums[index] / 1000).toFixed(4) + "吨";
|
|
}
|
|
}
|
|
if (column.property === "fNetweight") {
|
|
if (column.property === "fNetweight") {
|
|
- sums[index] = sums[index].toFixed(4) + "吨";
|
|
|
|
|
|
+ sums[index] = (sums[index] / 1000).toFixed(4) + "吨";
|
|
}
|
|
}
|
|
if (column.property === "fQty") {
|
|
if (column.property === "fQty") {
|
|
// sums[index] = sums[index].toFixed(2);
|
|
// sums[index] = sums[index].toFixed(2);
|