Browse Source

国内/国际离港航班视图-预警报警修改

zhongxiaoyu 2 years ago
parent
commit
d0b774dfaf
1 changed files with 6 additions and 6 deletions
  1. 6 6
      src/views/realTime/components/AirportView/useAirportTable.ts

+ 6 - 6
src/views/realTime/components/AirportView/useAirportTable.ts

@@ -991,18 +991,18 @@ const computedWidth = (column: SimpleColumn) => {
   return width + 1
 }
 
-function getAddend(flightNO: string, name: string) {
+function getAddend(planeType: string, name: string) {
   const minute =
     LOAD_WARNING_MAP[
       name.includes('International') ? 'internationalDeparture' : 'departure'
-    ][flightNO]
+    ][planeType]
   if (minute) {
     return minute * -1 * 60 * 1000
   }
-  return 0
+  return null
 }
-function computedTime(originalTime: CommonValue, addend: number) {
-  if ((originalTime ?? '') === '') {
+function computedTime(originalTime: CommonValue, addend: number | null) {
+  if ((originalTime ?? '') === '' || addend === null) {
     return null
   }
   let datetime = 0
@@ -1109,7 +1109,7 @@ export function useAirportTable(name: string, formData: CommonData) {
         ) {
           row.endLoadTime = computedTime(
             row.planDepartureTime,
-            getAddend(`${row.IATACode}${row.flightNO}`, name)
+            getAddend(`${row.planeType}`, name)
           )
         }
         return {