|
@@ -67,10 +67,10 @@
|
|
|
>已卸机总数:{{ tableDataCount.unloadCount }}</span
|
|
|
>
|
|
|
<!-- <span v-if="isDeparture" class="table-footer-count"
|
|
|
- >已起飞总数:{{ dealedCount }}</span
|
|
|
+ >已起飞总数:{{ finishedCount }}</span
|
|
|
>
|
|
|
<span v-else class="table-footer-count"
|
|
|
- >已降落总数:{{ dealedCount }}</span
|
|
|
+ >已降落总数:{{ finishedCount }}</span
|
|
|
> -->
|
|
|
</div>
|
|
|
</template>
|
|
@@ -102,6 +102,7 @@ import type {
|
|
|
} from '../../type'
|
|
|
import { useLoop } from '@/hooks/useLoop'
|
|
|
import { useTableSettingsStore } from '@/store/tableSettings'
|
|
|
+import { useFlightState } from './useFlightState'
|
|
|
|
|
|
const props = defineProps({
|
|
|
name: {
|
|
@@ -122,6 +123,16 @@ const { tableColumns, tableData, getTableData } = useAirportTable(
|
|
|
formData
|
|
|
)
|
|
|
|
|
|
+const finishedCount = ref(0)
|
|
|
+const { warningRules, getWarningRules } = useFlightState(props.name, tableData, finishedCount)
|
|
|
+
|
|
|
+useLoop([getWarningRules, getTableData], 'airport', [formData])
|
|
|
+
|
|
|
+const countFlag = ref(true)
|
|
|
+const { tableColumnFormatter, tableDataFormatter } = useFormatter(countFlag)
|
|
|
+
|
|
|
+const UTCFlag = ref(true)
|
|
|
+
|
|
|
const customRendererColumns = computed(() => [
|
|
|
{
|
|
|
key: 'rowNO',
|
|
@@ -135,7 +146,7 @@ const customRendererColumns = computed(() => [
|
|
|
},
|
|
|
...tableColumns.value.map(column => ({
|
|
|
...column,
|
|
|
- headerCellRenderer: ({column}: HeaderRenderProps) => (
|
|
|
+ headerCellRenderer: ({ column }: HeaderRenderProps) => (
|
|
|
<TableHeaderCell
|
|
|
v-model:filterValues={filterValueMap[column.columnName]}
|
|
|
v-model:sortRule={sortRuleMap[column.columnName]}
|
|
@@ -168,27 +179,23 @@ const customRendererColumns = computed(() => [
|
|
|
})),
|
|
|
])
|
|
|
|
|
|
-const countFlag = ref(true)
|
|
|
-const { tableColumnFormatter, tableDataFormatter } = useFormatter(countFlag)
|
|
|
-
|
|
|
-const UTCFlag = ref(true)
|
|
|
-
|
|
|
-useLoop([getTableData], 'airport', [formData])
|
|
|
const { columnChecked } = useTableColumnSet(tableColumns)
|
|
|
const { rowClassV2, cellClassV2 } = useTableStyle(props.name)
|
|
|
const cellPropsGetter = params => ({
|
|
|
class: cellClassV2(params),
|
|
|
})
|
|
|
-const dealedCount = ref(0)
|
|
|
+
|
|
|
const rowClass: RowClassGetter = params => {
|
|
|
const { rowData, rowIndex } = params
|
|
|
const classes: string[] = []
|
|
|
if (rowData.hasTakenOff === 'Y' || rowData.hasLanded === 'Y') {
|
|
|
classes.push('bg-gray')
|
|
|
if (
|
|
|
- ['planDepartureTime', 'planLandingTime'].some(key => sortRuleMap[key] === 'ascending') &&
|
|
|
- dealedCount.value < tableData.value.length &&
|
|
|
- rowIndex === dealedCount.value - 1
|
|
|
+ ['planDepartureTime', 'planLandingTime'].some(
|
|
|
+ key => sortRuleMap[key] === 'ascending'
|
|
|
+ ) &&
|
|
|
+ finishedCount.value < tableData.value.length &&
|
|
|
+ rowIndex === finishedCount.value - 1
|
|
|
) {
|
|
|
classes.push('underline-red')
|
|
|
}
|
|
@@ -328,46 +335,20 @@ const getPermission = (type?: string) => {
|
|
|
}
|
|
|
|
|
|
const hasSetTableScroll = ref(false)
|
|
|
-watch([() => formData.startDate, () => formData.endDate], ([startDate, endDate], [preStartDate, preEndDate]) => {
|
|
|
- if (
|
|
|
- startDate !== preStartDate ||
|
|
|
- endDate !== preEndDate
|
|
|
- ) {
|
|
|
- hasSetTableScroll.value = false
|
|
|
- }
|
|
|
-})
|
|
|
-watch(tableData, async rows => {
|
|
|
- dealedCount.value = 0
|
|
|
- const now = new Date().getTime()
|
|
|
- rows.forEach((row, rowIndex) => {
|
|
|
- if (props.name.includes('DepartureAirport') && typeof row.planDepartureTime === 'string') {
|
|
|
- const departureTime = new Date(
|
|
|
- row.planDepartureTime.replace('T', ' ')
|
|
|
- ).getTime()
|
|
|
- if (now >= departureTime) {
|
|
|
- row.hasTakenOff = 'Y'
|
|
|
- dealedCount.value++
|
|
|
- } else {
|
|
|
- row.hasTakenOff = 'N'
|
|
|
- }
|
|
|
- }
|
|
|
- if (props.name.includes('ArrivalAirport') && typeof row.planLandingTime ==='string') {
|
|
|
- const landingTime = new Date(
|
|
|
- row.planLandingTime.replace('T', ' ')
|
|
|
- ).getTime()
|
|
|
- if (now >= landingTime) {
|
|
|
- row.hasLanded = 'Y'
|
|
|
- dealedCount.value++
|
|
|
- } else {
|
|
|
- row.hasLanded = 'N'
|
|
|
- }
|
|
|
+watch(
|
|
|
+ [() => formData.startDate, () => formData.endDate],
|
|
|
+ ([startDate, endDate], [preStartDate, preEndDate]) => {
|
|
|
+ if (startDate !== preStartDate || endDate !== preEndDate) {
|
|
|
+ hasSetTableScroll.value = false
|
|
|
}
|
|
|
- })
|
|
|
- if (hasSetTableScroll.value || !dealedCount.value) {
|
|
|
- return
|
|
|
}
|
|
|
+)
|
|
|
+watch(tableData, async () => {
|
|
|
await nextTick()
|
|
|
- tableRef.value?.scrollToRow(dealedCount.value - 1, 'start')
|
|
|
+ if (hasSetTableScroll.value || !finishedCount.value) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ tableRef.value?.scrollToRow(finishedCount.value - 1, 'start')
|
|
|
hasSetTableScroll.value = true
|
|
|
})
|
|
|
|