|
@@ -1,7 +1,14 @@
|
|
|
-import { CommonData, CommonValue } from '~/common'
|
|
|
+import { CommonData, CommonValue, MaybeRef } from '~/common'
|
|
|
import { Query } from '@/api/webApi'
|
|
|
import { ElMessage } from 'element-plus'
|
|
|
import _ from 'lodash'
|
|
|
+import { parseTime } from '@/utils/validate'
|
|
|
+
|
|
|
+type FlightInfoItem = {
|
|
|
+ label: string
|
|
|
+ key?: string
|
|
|
+ getter?: (info: CommonData, UTCFlag?: boolean) => string
|
|
|
+}
|
|
|
|
|
|
const flightTypeMap = ['货机', '客机', '其他']
|
|
|
const flightStateMap = {
|
|
@@ -9,7 +16,20 @@ const flightStateMap = {
|
|
|
DLY: '延误',
|
|
|
}
|
|
|
|
|
|
-const flightInfoItemsMap = {
|
|
|
+const datetimeFormatter = (str: any, UTCFlag?: boolean) => {
|
|
|
+ if (typeof str !== 'string' || !str) {
|
|
|
+ return ''
|
|
|
+ }
|
|
|
+ const datetime = new Date(str.replace('T', ' '))
|
|
|
+ if (UTCFlag) {
|
|
|
+ datetime.setTime(datetime.getTime() - 8 * 60 * 60 * 1000)
|
|
|
+ }
|
|
|
+ return parseTime(datetime, '{y}-{m}-{d} {h}:{i}:{s}') as string
|
|
|
+}
|
|
|
+
|
|
|
+const flightInfoItemsMap: {
|
|
|
+ [type: string]: FlightInfoItem[][]
|
|
|
+} = {
|
|
|
departure: [
|
|
|
[
|
|
|
{
|
|
@@ -18,11 +38,13 @@ const flightInfoItemsMap = {
|
|
|
},
|
|
|
{
|
|
|
label: '计划起飞时间',
|
|
|
- getter: info => info.planDepartureTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.planDepartureTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '实际起飞时间',
|
|
|
- getter: info => info.acDepartureTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.acDepartureTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '机型',
|
|
@@ -86,11 +108,13 @@ const flightInfoItemsMap = {
|
|
|
},
|
|
|
{
|
|
|
label: '计划降落时间',
|
|
|
- getter: info => info.planLandingTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.planLandingTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '实际降落时间',
|
|
|
- getter: info => info.acLandingTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.acLandingTime, UTCFlag),
|
|
|
},
|
|
|
],
|
|
|
],
|
|
@@ -102,11 +126,13 @@ const flightInfoItemsMap = {
|
|
|
},
|
|
|
{
|
|
|
label: '计划起飞时间',
|
|
|
- getter: info => info.planDepartureTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.planDepartureTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '实际起飞时间',
|
|
|
- getter: info => info.acDepartureTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.acDepartureTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '机型',
|
|
@@ -166,11 +192,13 @@ const flightInfoItemsMap = {
|
|
|
},
|
|
|
{
|
|
|
label: '计划降落时间',
|
|
|
- getter: info => info.planLandingTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.planLandingTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '实际降落时间',
|
|
|
- getter: info => info.acLandingTime?.replace('T', ' ') ?? '',
|
|
|
+ getter: (info, UTCFlag) =>
|
|
|
+ datetimeFormatter(info.acLandingTime, UTCFlag),
|
|
|
},
|
|
|
{
|
|
|
label: '停机位',
|
|
@@ -180,14 +208,12 @@ const flightInfoItemsMap = {
|
|
|
],
|
|
|
}
|
|
|
|
|
|
-export function useFlightInfo(name: string, dataContent: CommonValue[]) {
|
|
|
- const flightInfoItems = ref<
|
|
|
- {
|
|
|
- label: string
|
|
|
- key?: string
|
|
|
- getter?: (info: any) => string
|
|
|
- }[][]
|
|
|
- >([])
|
|
|
+export function useFlightInfo(
|
|
|
+ name: string,
|
|
|
+ dataContent: CommonValue[],
|
|
|
+ UTCFlag?: MaybeRef<boolean>
|
|
|
+) {
|
|
|
+ const flightInfoItems = ref<FlightInfoItem[][]>([])
|
|
|
const getFlightInfoItems = () => {
|
|
|
flightInfoItems.value = _.cloneDeep(
|
|
|
flightInfoItemsMap[name.includes('Departure') ? 'departure' : 'arrival']
|
|
@@ -236,7 +262,7 @@ export function useFlightInfo(name: string, dataContent: CommonValue[]) {
|
|
|
return airportNameZhMap[flightInfo[item.key.slice(0, -2)]!] ?? ''
|
|
|
}
|
|
|
if (item.getter) {
|
|
|
- return item.getter(flightInfo)
|
|
|
+ return item.getter(flightInfo, unref(UTCFlag))
|
|
|
}
|
|
|
if (item.key) {
|
|
|
return String(flightInfo[item.key] ?? '')
|