浏览代码

中转航班视图节点修改

zhongxiaoyu 2 年之前
父节点
当前提交
5f788c369f
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      src/views/realTime/components/FlightView/index.vue

+ 5 - 1
src/views/realTime/components/FlightView/index.vue

@@ -185,7 +185,11 @@ const tableFormatter: CommonTableFormatter = (
     }
   }
   if (column.property === 'nodeCode') {
-    if (props.name.includes('InternationalDeparture') && value === 'LS_CARGO') {
+    if (
+      props.name.includes('International') &&
+      props.name.includes('Departure') &&
+      value === 'LS_CARGO'
+    ) {
       return '实配'
     }
     return NODE_CODE[value] ?? value