浏览代码

航站视图、航班视图添加航班类型字段

zhongxiaoyu 2 年之前
父节点
当前提交
7adee499a2

+ 22 - 0
src/views/realTime/components/AirportView/useAirportTable.ts

@@ -61,6 +61,12 @@ const columnGroupsMap: {
           needFilters: 1,
           fixed: true,
         },
+        {
+          columnName: 'flightType',
+          columnLabel: '航班类型',
+          needFilters: 1,
+          fixed: true,
+        },
         {
           columnName: 'takeOffStand',
           columnLabel: '停机位',
@@ -285,6 +291,11 @@ const columnGroupsMap: {
           columnLabel: '机型',
           needFilters: 1,
         },
+        {
+          columnName: 'flightType',
+          columnLabel: '航班类型',
+          needFilters: 1,
+        },
         {
           columnName: 'landingStand',
           columnLabel: '停机位',
@@ -414,6 +425,12 @@ const columnGroupsMap: {
           needFilters: 1,
           fixed: true,
         },
+        {
+          columnName: 'flightType',
+          columnLabel: '航班类型',
+          needFilters: 1,
+          fixed: true,
+        },
         {
           columnName: 'takeOffStand',
           columnLabel: '停机位',
@@ -673,6 +690,11 @@ const columnGroupsMap: {
           columnLabel: '机型',
           needFilters: 1,
         },
+        {
+          columnName: 'flightType',
+          columnLabel: '航班类型',
+          needFilters: 1,
+        },
         {
           columnName: 'landingStand',
           columnLabel: '停机位',

+ 8 - 0
src/views/realTime/components/FlightView/useFlightInfo.ts

@@ -21,6 +21,10 @@ const flightInfoItemsMap = {
         label: '机型',
         key: 'planeType',
       },
+      {
+        label: '航班类型',
+        key: 'flightType',
+      },
       {
         label: '停机位',
         key: 'takeOffStand',
@@ -94,6 +98,10 @@ const flightInfoItemsMap = {
         label: '机型',
         key: 'planeType',
       },
+      {
+        label: '航班类型',
+        key: 'flightType',
+      },
     ],
     [
       {