瀏覽代碼

替换安检节点取消

zhongxiaoyu 2 年之前
父節點
當前提交
89518bb746

+ 1 - 1
src/views/realTime/components/AirportView/index.vue

@@ -189,7 +189,7 @@ const summaryMethod: SummaryMethod<CommonData> = ({ columns, data }) => {
             })
           }
           return prev
-        }, [])
+        }, [0])
         const matched = column.label.match(/(?<=\()\S+(?=\))/)
         if (matched && !countFlag.value) {
           const machedStr = matched[0]

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

@@ -915,13 +915,13 @@ export function useAirportTable(name: string, formData: CommonData) {
       //   ...column,
       // }))
       tableData.value = listValues.map(row => {
-        if (name === 'DepartureAirport') {
-          row.securityYes =
-            typeof row.addCargo === 'string'
-              ? row.addCargo.split('/').slice(0, 2).join('/')
-              : null
-          row.securityTime = row.addCargoTime
-        }
+        // if (name === 'DepartureAirport') {
+        //   row.securityYes =
+        //     typeof row.addCargo === 'string'
+        //       ? row.addCargo.split('/').slice(0, 2).join('/')
+        //       : null
+        //   row.securityTime = row.addCargoTime
+        // }
         return {
           ...row,
           rowKey: `${row.IATACode}-${row.flightNO}-${row.flightDate}`,

+ 16 - 15
src/views/realTime/hooks/useTrackData.ts

@@ -32,8 +32,8 @@ const trackNodesMap = {
     // },
     {
       name: '安检',
-      // nodeCode: '安检',
-      nodeCode: 'SECURITY', // 临时-复制加货
+      nodeCode: '安检',
+      // nodeCode: 'SECURITY', // 临时-复制加货
     },
     {
       name: '加货',
@@ -201,19 +201,20 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
   const isInternational = name.includes('International')
 
   const computedTrackData = computed(() => {
-    if (name !== 'DepartureWaybill') {
-      return unref(trackData)
-    }
-    return unref(trackData).reduce((prevData, currentNode) => {
-      if (currentNode.nodeCode === 'ACC_BUP') {
-        return [
-          ...prevData,
-          currentNode,
-          { ...currentNode, nodeCode: 'SECURITY' },
-        ]
-      }
-      return [...prevData, currentNode]
-    }, [] as CommonData[])
+    // if (name !== 'DepartureWaybill') {
+    //   return unref(trackData)
+    // }
+    // return unref(trackData).reduce((prevData, currentNode) => {
+    //   if (currentNode.nodeCode === 'ACC_BUP') {
+    //     return [
+    //       ...prevData,
+    //       currentNode,
+    //       { ...currentNode, nodeCode: 'SECURITY' },
+    //     ]
+    //   }
+    //   return [...prevData, currentNode]
+    // }, [] as CommonData[])
+    return unref(trackData)
   })
 
   const trackAirlines = ref<TrackAirline[]>([])