|
@@ -351,7 +351,7 @@ export default {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
for (var i = 0; i < this.freightspace.length; i++) {
|
|
maxStorage += Number(this.freightspace[i].maxStorage)
|
|
maxStorage += Number(this.freightspace[i].maxStorage)
|
|
}
|
|
}
|
|
- return maxStorage
|
|
|
|
|
|
+ return maxStorage.toFixed(2)
|
|
},
|
|
},
|
|
total: function () {
|
|
total: function () {
|
|
var maxStorage = 0
|
|
var maxStorage = 0
|
|
@@ -360,7 +360,7 @@ export default {
|
|
this.deptBudgetList.tranCarInfoList[i].loadNetWeight
|
|
this.deptBudgetList.tranCarInfoList[i].loadNetWeight
|
|
)
|
|
)
|
|
}
|
|
}
|
|
- return maxStorage
|
|
|
|
|
|
+ return maxStorage.toFixed(2)
|
|
},
|
|
},
|
|
label1: function () {
|
|
label1: function () {
|
|
for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
|
|
for (var i = 0; i < this.deptBudgetList.tranCarInfoList.length; i++) {
|