Browse Source

中转航班视图节点修改

zhongxiaoyu 2 năm trước cách đây
mục cha
commit
457d522117

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

@@ -182,7 +182,11 @@ const formatter: CommonTableFormatter = (row, column, cellValue, index) => {
     return datetimeToTime(value, flightDate.value)
   }
   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