|
@@ -89,6 +89,7 @@ import { useTableExport } from '../../hooks/useTableExport'
|
|
|
import { useTableStyle } from '../../hooks/useTableStyle'
|
|
|
import { useTableCellClick } from '../../hooks/useTableCellClick'
|
|
|
import { useFlightInfo } from './useFlightInfo'
|
|
|
+import { useLoop } from '@/hooks/useLoop'
|
|
|
|
|
|
const props = defineProps({
|
|
|
name: {
|
|
@@ -97,16 +98,6 @@ const props = defineProps({
|
|
|
},
|
|
|
})
|
|
|
|
|
|
-// onMounted(() => {
|
|
|
-// console.log('mounted', 'flight')
|
|
|
-// })
|
|
|
-// onActivated(() => {
|
|
|
-// console.log('activated', 'flight')
|
|
|
-// })
|
|
|
-// onDeactivated(() => {
|
|
|
-// console.log('deactivated', 'flight')
|
|
|
-// })
|
|
|
-
|
|
|
const isDeparture = computed(() => props.name.includes('Departure'))
|
|
|
|
|
|
const route = useRoute()
|
|
@@ -126,17 +117,22 @@ const dataContent = [
|
|
|
// landingAirport,
|
|
|
] as string[]
|
|
|
|
|
|
-const { flightInfoItems, flightInfo, computedFlightInfo } = useFlightInfo(
|
|
|
- props.name,
|
|
|
- dataContent
|
|
|
-)
|
|
|
+const {
|
|
|
+ flightInfoItems,
|
|
|
+ flightInfo,
|
|
|
+ computedFlightInfo,
|
|
|
+ getFlightInfo,
|
|
|
+} = useFlightInfo(props.name, dataContent)
|
|
|
+useLoop(getFlightInfo, 'flight')
|
|
|
|
|
|
const airLine = toRef(flightInfo, 'flightinfo')
|
|
|
|
|
|
const {
|
|
|
tableColumns: containerTableColumns,
|
|
|
tableData: containerTableData,
|
|
|
+ getTableData: getContainerTableData,
|
|
|
} = useTable(`${props.name}Container`, dataContent)
|
|
|
+useLoop(getContainerTableData, 'flight')
|
|
|
const waybillTableFormatter = (row, column, cellValue, index) => {
|
|
|
if (column.property.includes('Time') && typeof cellValue === 'string') {
|
|
|
return cellValue.replace('T', '\n')
|
|
@@ -147,7 +143,9 @@ const waybillTableFormatter = (row, column, cellValue, index) => {
|
|
|
const {
|
|
|
tableColumns: waybillTableColumns,
|
|
|
tableData: waybillTableData,
|
|
|
+ getTableData: getWaybillTableData,
|
|
|
} = useTable(`${props.name}Waybill`, dataContent)
|
|
|
+useLoop(getWaybillTableData, 'flight')
|
|
|
|
|
|
const UTCFlag = ref(true)
|
|
|
|