|
@@ -16,7 +16,7 @@
|
|
|
<CountBox
|
|
|
:count-number="airportCount.weight"
|
|
|
:label="`已${isDeparture ? '装载' : '卸载'}重量(吨)`"
|
|
|
- :length="4"
|
|
|
+ :length="5"
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="airport-settings">
|
|
@@ -126,8 +126,15 @@ const getAirportCount = async () => {
|
|
|
const { flightNum, finishFlightNum, weight } = listValues[0]
|
|
|
airportCount.flightNum = flightNum ?? 0
|
|
|
airportCount.finishFlightNum = finishFlightNum ?? 0
|
|
|
- airportCount.weight = weight ? Math.ceil(weight / 1000) : 0 // 向上取整
|
|
|
- // airportCount.weight = weight ? parseFloat((weight / 1000).toFixed(2)) : 0 // 四舍五入保留两位
|
|
|
+ if (typeof weight === 'number' && weight > 0) {
|
|
|
+ if (weight <= 1000) {
|
|
|
+ airportCount.weight = 1
|
|
|
+ } else {
|
|
|
+ airportCount.weight = parseInt((weight / 1000).toFixed())
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ airportCount.weight = 0
|
|
|
+ }
|
|
|
} catch (error) {
|
|
|
console.error(error)
|
|
|
}
|