فهرست منبع

中转航班视图节点修改

zhongxiaoyu 2 سال پیش
والد
کامیت
457d522117
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      src/views/realTime/components/FlightView/ContainerWaybillDialog.vue

+ 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