|
@@ -83,7 +83,7 @@ import { useAirportTable } from './useAirportTable'
|
|
|
import { useTableStyle } from '../../hooks/useTableStyle'
|
|
|
import { useTableCellClick } from '../../hooks/useTableCellClick'
|
|
|
import { useTableFilterAndSort } from '@/hooks/useTableFilterAndSort'
|
|
|
-import { useCount } from './useCount'
|
|
|
+import { useFormatter } from './useFormatter'
|
|
|
import { ElTableV2, RowEventHandlers, TableV2Instance } from 'element-plus'
|
|
|
import { CommonData } from '~/common'
|
|
|
import type { HeaderRenderProps, CellRenderProps, RowClassGetter, ScrollParams } from '../../type'
|
|
@@ -143,7 +143,7 @@ const customRendererColumns = computed(() =>
|
|
|
)
|
|
|
|
|
|
const countFlag = ref(true)
|
|
|
-const { tableColumnFormatter, tableDataFormatter } = useCount(countFlag)
|
|
|
+const { tableColumnFormatter, tableDataFormatter } = useFormatter(countFlag)
|
|
|
|
|
|
const UTCFlag = ref(true)
|
|
|
|
|
@@ -216,6 +216,22 @@ const tableDataCount = computed(() =>
|
|
|
|
|
|
const { cellClickHandlerV2 } = useTableCellClick(props.name)
|
|
|
|
|
|
+const flightStateFilter = computed<{} | { [x: string]: string[] }>(() => {
|
|
|
+ switch (formData.flightState) {
|
|
|
+ case 'hasTakenOff':
|
|
|
+ return { hasTakenOff: ['Y'] }
|
|
|
+ case 'hasNotTakenOff':
|
|
|
+ return { hasTakenOff: ['N'] }
|
|
|
+ case 'hasLanded':
|
|
|
+ return { hasLanded: ['Y'] }
|
|
|
+ case 'hasNotLanded':
|
|
|
+ return { hasLanded: ['N'] }
|
|
|
+ case 'canceled':
|
|
|
+ return { flightState: ['CAN'] }
|
|
|
+ default:
|
|
|
+ return {}
|
|
|
+ }
|
|
|
+})
|
|
|
const {
|
|
|
filterOptionMap,
|
|
|
filterValueMap,
|
|
@@ -224,7 +240,7 @@ const {
|
|
|
} = useTableFilterAndSort(
|
|
|
tableColumns,
|
|
|
tableData,
|
|
|
- {},
|
|
|
+ flightStateFilter,
|
|
|
{ [props.name.includes('Departure') ? 'planDepartureTime' : 'planLandingTime']: 'ascending' }
|
|
|
)
|
|
|
|
|
@@ -259,8 +275,10 @@ const getPermission = (type?: string) => {
|
|
|
}
|
|
|
|
|
|
const hasSetTableScroll = ref(false)
|
|
|
-watch(formData, () => {
|
|
|
- hasSetTableScroll.value = false
|
|
|
+watch(formData, (newData, oldData) => {
|
|
|
+ if (newData.startDate !== oldData.startDate || newData.endDate !== oldData.endDate) {
|
|
|
+ hasSetTableScroll.value = false
|
|
|
+ }
|
|
|
})
|
|
|
watch(tableData, async rows => {
|
|
|
dealedCount.value = 0
|
|
@@ -271,8 +289,10 @@ watch(tableData, async rows => {
|
|
|
(row.planDepartureTime as string).replace('T', ' ')
|
|
|
).getTime()
|
|
|
if (now >= departureTime) {
|
|
|
- row.hasTakenOff = 1
|
|
|
+ row.hasTakenOff = 'Y'
|
|
|
dealedCount.value++
|
|
|
+ } else {
|
|
|
+ row.hasTakenOff = 'N'
|
|
|
}
|
|
|
}
|
|
|
if (props.name.includes('ArrivalAirport') && row.planLandingTime) {
|
|
@@ -280,8 +300,10 @@ watch(tableData, async rows => {
|
|
|
(row.planLandingTime as string).replace('T', ' ')
|
|
|
).getTime()
|
|
|
if (now >= landingTime) {
|
|
|
- row.hasLanded = 1
|
|
|
+ row.hasLanded = 'Y'
|
|
|
dealedCount.value++
|
|
|
+ } else {
|
|
|
+ row.hasLanded = 'N'
|
|
|
}
|
|
|
}
|
|
|
})
|