|
@@ -61,8 +61,11 @@
|
|
|
<span v-else class="table-footer-count"
|
|
|
>已卸机总数:{{ tableDataCount.unloadCount }}</span
|
|
|
>
|
|
|
- <span class="table-footer-count"
|
|
|
- >已起飞总数:{{ tableDataCount.takeOffCount }}</span
|
|
|
+ <span v-if="isDeparture" class="table-footer-count"
|
|
|
+ >已起飞总数:{{ tableDataCount.dealedCount }}</span
|
|
|
+ >
|
|
|
+ <span v-else class="table-footer-count"
|
|
|
+ >已降落总数:{{ tableDataCount.dealedCount }}</span
|
|
|
>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -213,10 +216,10 @@ const tableDataCount = computed(() =>
|
|
|
if (isFreight) {
|
|
|
counts.freightFlightCount++
|
|
|
}
|
|
|
- if (current.loadPlaneSure) {
|
|
|
+ if (current.loadPlaneSureTime) {
|
|
|
counts.loadCount++
|
|
|
}
|
|
|
- if (current.unLoad) {
|
|
|
+ if (current.unLoadTime) {
|
|
|
counts.unloadCount++
|
|
|
}
|
|
|
return counts
|
|
@@ -228,7 +231,7 @@ const tableDataCount = computed(() =>
|
|
|
freightFlightCount: 0,
|
|
|
loadCount: 0,
|
|
|
unloadCount: 0,
|
|
|
- takeOffCount: 0,
|
|
|
+ dealedCount: dealedCount.value,
|
|
|
}
|
|
|
)
|
|
|
)
|