Procházet zdrojové kódy

航站视图-航班数量统计修改

zhongxiaoyu před 2 roky
rodič
revize
7ea396f219

+ 8 - 5
src/views/realTime/components/AirportView/index.vue

@@ -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,
     }
   )
 )