|
@@ -8,27 +8,27 @@ export function useFlightState(
|
|
finishedCount: Ref<number>,
|
|
finishedCount: Ref<number>,
|
|
formData: CommonData
|
|
formData: CommonData
|
|
) {
|
|
) {
|
|
- const warningRules = ref<CommonData[]>([])
|
|
|
|
- const getWarningRules = async () => {
|
|
|
|
- try {
|
|
|
|
- const {
|
|
|
|
- code,
|
|
|
|
- returnData: { listValues },
|
|
|
|
- message,
|
|
|
|
- } = await Query<CommonData>({
|
|
|
|
- id: DATACONTENT_ID.warningRules,
|
|
|
|
- dataContent: [],
|
|
|
|
- })
|
|
|
|
- if (Number(code) !== 0) {
|
|
|
|
- throw new Error(message || '失败')
|
|
|
|
- }
|
|
|
|
- warningRules.value = listValues
|
|
|
|
- } catch (error) {
|
|
|
|
- console.error(error)
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ // const warningRules = ref<CommonData[]>([])
|
|
|
|
+ // const getWarningRules = async () => {
|
|
|
|
+ // try {
|
|
|
|
+ // const {
|
|
|
|
+ // code,
|
|
|
|
+ // returnData: { listValues },
|
|
|
|
+ // message,
|
|
|
|
+ // } = await Query<CommonData>({
|
|
|
|
+ // id: DATACONTENT_ID.warningRules,
|
|
|
|
+ // dataContent: [],
|
|
|
|
+ // })
|
|
|
|
+ // if (Number(code) !== 0) {
|
|
|
|
+ // throw new Error(message || '失败')
|
|
|
|
+ // }
|
|
|
|
+ // warningRules.value = listValues
|
|
|
|
+ // } catch (error) {
|
|
|
|
+ // console.error(error)
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
|
|
- const warningNodes = ref<WarningNode[]>([])
|
|
|
|
|
|
+ const warningNodesMap = reactive<{ [nodeCode: string]: WarningNode[] }>({})
|
|
const getWarningNodes = async () => {
|
|
const getWarningNodes = async () => {
|
|
try {
|
|
try {
|
|
const {
|
|
const {
|
|
@@ -42,7 +42,16 @@ export function useFlightState(
|
|
if (Number(code) !== 0) {
|
|
if (Number(code) !== 0) {
|
|
throw new Error(message || '失败')
|
|
throw new Error(message || '失败')
|
|
}
|
|
}
|
|
- warningNodes.value = listValues
|
|
|
|
|
|
+ Object.keys(warningNodesMap).forEach(key => {
|
|
|
|
+ delete warningNodesMap[key]
|
|
|
|
+ })
|
|
|
|
+ listValues.forEach(node => {
|
|
|
|
+ if (warningNodesMap[node.node_code]) {
|
|
|
|
+ warningNodesMap[node.node_code].push({ ...node })
|
|
|
|
+ } else {
|
|
|
|
+ warningNodesMap[node.node_code] = [{ ...node }]
|
|
|
|
+ }
|
|
|
|
+ })
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.error(error)
|
|
console.error(error)
|
|
}
|
|
}
|
|
@@ -63,22 +72,9 @@ export function useFlightState(
|
|
// 判断已起飞
|
|
// 判断已起飞
|
|
if (now >= departureTime) {
|
|
if (now >= departureTime) {
|
|
row.hasTakenOff = 'Y'
|
|
row.hasTakenOff = 'Y'
|
|
- // if (
|
|
|
|
- // name.includes('International') &&
|
|
|
|
- // row['enterPark'] &&
|
|
|
|
- // row['receiveSure1']
|
|
|
|
- // ) {
|
|
|
|
- // finishedCount.value++
|
|
|
|
- // }
|
|
|
|
- // if (!name.includes('International') && row['receiveSure']) {
|
|
|
|
- // finishedCount.value++
|
|
|
|
- // }
|
|
|
|
finishedCount.value++
|
|
finishedCount.value++
|
|
} else {
|
|
} else {
|
|
row.hasTakenOff = 'N'
|
|
row.hasTakenOff = 'N'
|
|
-
|
|
|
|
- // 未起飞的匹配预警报警策略
|
|
|
|
- // row.warningState = getWarningState(row)
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
@@ -108,9 +104,6 @@ export function useFlightState(
|
|
// 判断已降落
|
|
// 判断已降落
|
|
if (now >= landingTime) {
|
|
if (now >= landingTime) {
|
|
row.hasLanded = 'Y'
|
|
row.hasLanded = 'Y'
|
|
- // if (row['unLoad'] && row['tally']) {
|
|
|
|
- // finishedCount.value++
|
|
|
|
- // }
|
|
|
|
finishedCount.value++
|
|
finishedCount.value++
|
|
} else {
|
|
} else {
|
|
row.hasLanded = 'N'
|
|
row.hasLanded = 'N'
|
|
@@ -119,70 +112,70 @@ export function useFlightState(
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
|
|
- const getWarningState = (flightData: CommonData) => {
|
|
|
|
- let warningState = ''
|
|
|
|
- if (
|
|
|
|
- typeof flightData.planDepartureTime !== 'string' ||
|
|
|
|
- typeof flightData.loadPlaneTime !== 'string'
|
|
|
|
- ) {
|
|
|
|
- return warningState
|
|
|
|
- }
|
|
|
|
|
|
+ // const getWarningState = (flightData: CommonData) => {
|
|
|
|
+ // let warningState = ''
|
|
|
|
+ // if (
|
|
|
|
+ // typeof flightData.planDepartureTime !== 'string' ||
|
|
|
|
+ // typeof flightData.loadPlaneTime !== 'string'
|
|
|
|
+ // ) {
|
|
|
|
+ // return warningState
|
|
|
|
+ // }
|
|
|
|
|
|
- const now = Date.now()
|
|
|
|
- const departureTime = new Date(
|
|
|
|
- flightData.planDepartureTime.replace('T', ' ')
|
|
|
|
- ).getTime()
|
|
|
|
- const loadTime = new Date(
|
|
|
|
- flightData.loadPlaneTime.replace('T', ' ')
|
|
|
|
- ).getTime()
|
|
|
|
- const duration = departureTime - loadTime
|
|
|
|
|
|
+ // const now = Date.now()
|
|
|
|
+ // const departureTime = new Date(
|
|
|
|
+ // flightData.planDepartureTime.replace('T', ' ')
|
|
|
|
+ // ).getTime()
|
|
|
|
+ // const loadTime = new Date(
|
|
|
|
+ // flightData.loadPlaneTime.replace('T', ' ')
|
|
|
|
+ // ).getTime()
|
|
|
|
+ // const duration = departureTime - loadTime
|
|
|
|
|
|
- warningRules.value.some(
|
|
|
|
- ({
|
|
|
|
- startDate,
|
|
|
|
- endDate,
|
|
|
|
- IATACode,
|
|
|
|
- flightNO,
|
|
|
|
- warningDuration,
|
|
|
|
- alarmDuration,
|
|
|
|
- }) => {
|
|
|
|
- let startTime = 0,
|
|
|
|
- endTime = 0
|
|
|
|
- if (typeof startDate === 'string') {
|
|
|
|
- startTime = new Date(startDate.replace('T', ' ')).getTime()
|
|
|
|
- }
|
|
|
|
- if (typeof endDate === 'string') {
|
|
|
|
- endTime = new Date(endDate.replace('T', ' ')).getTime()
|
|
|
|
- }
|
|
|
|
- // 排除不在生效期内或是航司、航班号不匹配的策略
|
|
|
|
- if ((startTime && startTime > now) || (endTime && endTime < now)) {
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- if (IATACode && IATACode !== flightData.IATACode) {
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- if (flightNO && flightNO !== flightData.flightNO) {
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- if (typeof alarmDuration === 'number' && duration < alarmDuration) {
|
|
|
|
- warningState = 'alarm'
|
|
|
|
- return true
|
|
|
|
- }
|
|
|
|
- if (typeof warningDuration === 'number' && duration < warningDuration) {
|
|
|
|
- warningState = 'warning'
|
|
|
|
- return true
|
|
|
|
- }
|
|
|
|
- return false
|
|
|
|
- }
|
|
|
|
- )
|
|
|
|
|
|
+ // warningRules.value.some(
|
|
|
|
+ // ({
|
|
|
|
+ // startDate,
|
|
|
|
+ // endDate,
|
|
|
|
+ // IATACode,
|
|
|
|
+ // flightNO,
|
|
|
|
+ // warningDuration,
|
|
|
|
+ // alarmDuration,
|
|
|
|
+ // }) => {
|
|
|
|
+ // let startTime = 0,
|
|
|
|
+ // endTime = 0
|
|
|
|
+ // if (typeof startDate === 'string') {
|
|
|
|
+ // startTime = new Date(startDate.replace('T', ' ')).getTime()
|
|
|
|
+ // }
|
|
|
|
+ // if (typeof endDate === 'string') {
|
|
|
|
+ // endTime = new Date(endDate.replace('T', ' ')).getTime()
|
|
|
|
+ // }
|
|
|
|
+ // // 排除不在生效期内或是航司、航班号不匹配的策略
|
|
|
|
+ // if ((startTime && startTime > now) || (endTime && endTime < now)) {
|
|
|
|
+ // return false
|
|
|
|
+ // }
|
|
|
|
+ // if (IATACode && IATACode !== flightData.IATACode) {
|
|
|
|
+ // return false
|
|
|
|
+ // }
|
|
|
|
+ // if (flightNO && flightNO !== flightData.flightNO) {
|
|
|
|
+ // return false
|
|
|
|
+ // }
|
|
|
|
+ // if (typeof alarmDuration === 'number' && duration < alarmDuration) {
|
|
|
|
+ // warningState = 'alarm'
|
|
|
|
+ // return true
|
|
|
|
+ // }
|
|
|
|
+ // if (typeof warningDuration === 'number' && duration < warningDuration) {
|
|
|
|
+ // warningState = 'warning'
|
|
|
|
+ // return true
|
|
|
|
+ // }
|
|
|
|
+ // return false
|
|
|
|
+ // }
|
|
|
|
+ // )
|
|
|
|
|
|
- return warningState
|
|
|
|
- }
|
|
|
|
|
|
+ // return warningState
|
|
|
|
+ // }
|
|
|
|
|
|
return {
|
|
return {
|
|
// warningRules,
|
|
// warningRules,
|
|
// getWarningRules,
|
|
// getWarningRules,
|
|
- warningNodes,
|
|
|
|
|
|
+ warningNodesMap,
|
|
getWarningNodes,
|
|
getWarningNodes,
|
|
}
|
|
}
|
|
}
|
|
}
|