Sfoglia il codice sorgente

航班视图-时间格式修改

zhongxiaoyu 2 anni fa
parent
commit
de03bcbfb8
1 ha cambiato i file con 15 aggiunte e 1 eliminazioni
  1. 15 1
      src/views/realTime/components/FlightView/index.vue

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

@@ -139,7 +139,21 @@ const {
 } = useTable(`${props.name}Waybill`, dataContent)
 
 const tableFormatter = (row, column, cellValue, index) => {
-  if (column.property.includes('Time') && typeof cellValue === 'string') {
+  if (
+    (column.property.includes('Time') ||
+      [
+        'tally',
+        'pull',
+        'wait',
+        'stowage',
+        'depot',
+        'resure',
+        'planeDown',
+        'loadPlane',
+        'pullSure',
+      ].includes(column.property)) &&
+    typeof cellValue === 'string'
+  ) {
     return cellValue.slice(5, -3).replace('T', '\n')
   }
   return String(cellValue ?? '')