|
@@ -1,5 +1,5 @@
|
|
|
import { Column } from 'element-plus'
|
|
|
-import { CommonData, CommonValue } from '~/common'
|
|
|
+import { CommonData, CommonValue, MaybeRef, WarningNode } from '~/common'
|
|
|
import { RowClassGetter } from '../type'
|
|
|
|
|
|
type CellClassGetter = (params: {
|
|
@@ -54,7 +54,10 @@ function getDuration(
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-export function useTableStyle(tableName?: string) {
|
|
|
+export function useTableStyle(
|
|
|
+ tableName: string,
|
|
|
+ warningNodes?: MaybeRef<WarningNode[]>
|
|
|
+) {
|
|
|
const rowClass = ({ row, rowIndex }) => {
|
|
|
const classes: string[] = []
|
|
|
if (tableName?.includes('Airport')) {
|
|
@@ -70,10 +73,8 @@ export function useTableStyle(tableName?: string) {
|
|
|
const cellClass = ({ row, column, rowIndex, columnIndex }) => {
|
|
|
const classes: string[] = []
|
|
|
|
|
|
- const cellData = row[column.property]
|
|
|
-
|
|
|
if (tableName?.includes('Airport')) {
|
|
|
- if ((['flightNO'] as CommonValue[]).includes(column.property)) {
|
|
|
+ if (column.property === 'flightNO') {
|
|
|
classes.push('cell-click')
|
|
|
if (row.flightState === 'DLY') {
|
|
|
classes.push('flight-state-delay')
|
|
@@ -82,123 +83,21 @@ export function useTableStyle(tableName?: string) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- if (
|
|
|
- column.property === 'register' &&
|
|
|
- typeof cellData === 'string' &&
|
|
|
- cellData.split('/').some(char => Number(char) > 0)
|
|
|
- ) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
-
|
|
|
- if (
|
|
|
- ([
|
|
|
- 'resure',
|
|
|
- // 'resureTime'
|
|
|
- ] as CommonValue[]).includes(column.property) &&
|
|
|
- (row['planeDownTime'] ?? '') !== ''
|
|
|
- ) {
|
|
|
- const { stowage, resure } = row
|
|
|
- let stowageNum = 0,
|
|
|
- resureNum = 0
|
|
|
- if (typeof stowage === 'string') {
|
|
|
- stowageNum = Number(stowage.split('/')[0]) || 0
|
|
|
- }
|
|
|
- if (typeof resure === 'string') {
|
|
|
- resureNum = Number(resure.split('/')[0]) || 0
|
|
|
- }
|
|
|
- if (stowageNum !== resureNum) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
- }
|
|
|
- // if (column.property === 'loadPlaneTime') {
|
|
|
- // if (row['warningState'] === 'alarm') {
|
|
|
- // classes.push('cell-alarm')
|
|
|
- // }
|
|
|
- // if (row['warningState'] === 'warning') {
|
|
|
- // classes.push('cell-warning')
|
|
|
- // }
|
|
|
- // }
|
|
|
- if (
|
|
|
- tableName === 'DepartureAirport' &&
|
|
|
- [
|
|
|
- 'securityYes',
|
|
|
- // 'securityTime'
|
|
|
- ].includes(column.property)
|
|
|
- ) {
|
|
|
- const { receiveSure, receiveSure1, securityYes } = row
|
|
|
- let receiveNum = 0,
|
|
|
- securityNum = 0
|
|
|
- if (tableName.includes('International')) {
|
|
|
- if (typeof receiveSure1 === 'string') {
|
|
|
- receiveNum = Number(receiveSure1.split('/')[0]) || 0
|
|
|
- }
|
|
|
- } else {
|
|
|
- if (typeof receiveSure === 'string') {
|
|
|
- receiveNum = Number(receiveSure.split('/')[0]) || 0
|
|
|
- }
|
|
|
- }
|
|
|
- if (typeof securityYes === 'string') {
|
|
|
- securityNum = Number(securityYes.split('/')[0]) || 0
|
|
|
- }
|
|
|
- if (receiveNum !== securityNum) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (tableName?.includes('Departure') && row.flightType === '货机') {
|
|
|
- if (column.property === 'loadPlaneSureTime') {
|
|
|
- const { planDepartureTime, loadPlaneSureTime } = row
|
|
|
- if (
|
|
|
- getTime(planDepartureTime) - getTime(loadPlaneSureTime) <
|
|
|
- 5 * 60 * 1000
|
|
|
- ) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (column.property === 'loadPlaneTime') {
|
|
|
- const { planDepartureTime, loadPlaneTime } = row
|
|
|
- if (
|
|
|
- getTime(planDepartureTime) - getTime(loadPlaneTime) <
|
|
|
- 2 * 60 * 1000
|
|
|
- ) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (
|
|
|
- tableName === 'DepartureAirport' &&
|
|
|
- column.property === 'addCargoTime'
|
|
|
- ) {
|
|
|
- const { endLoadTime, addCargoTime } = row
|
|
|
- if (getTime(endLoadTime) < getTime(addCargoTime)) {
|
|
|
+ if (warningNodes) {
|
|
|
+ const matchedNode = unref(warningNodes).find(
|
|
|
+ node =>
|
|
|
+ node.node_code === column.property &&
|
|
|
+ node.iata_code === row.IATACode &&
|
|
|
+ node.flight_no === row.flightNO
|
|
|
+ )
|
|
|
+ if (matchedNode) {
|
|
|
+ if (String(matchedNode.alarm_type) === '1') {
|
|
|
classes.push('cell-warning')
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- if (
|
|
|
- tableName === 'InternationalDepartureAirport' &&
|
|
|
- column.property === 'securityTime'
|
|
|
- ) {
|
|
|
- const { endLoadTime, securityTime } = row
|
|
|
- if (getTime(endLoadTime) < getTime(securityTime)) {
|
|
|
- classes.push('cell-warning')
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (column.property === 'planeDownTime') {
|
|
|
- const { planDepartureTime, planeDownTime, takeOffStand } = row
|
|
|
- const { warning, alarm } = getDuration(tableName, takeOffStand)
|
|
|
- if (
|
|
|
- typeof alarm === 'number' &&
|
|
|
- getTime(planDepartureTime) - getTime(planeDownTime) < alarm
|
|
|
- ) {
|
|
|
+ if (matchedNode) {
|
|
|
+ if (String(matchedNode.alarm_type) === '2') {
|
|
|
classes.push('cell-alarm')
|
|
|
- } else if (
|
|
|
- typeof warning === 'number' &&
|
|
|
- getTime(planDepartureTime) - getTime(planeDownTime) < warning
|
|
|
- ) {
|
|
|
- classes.push('cell-warning')
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -221,12 +120,6 @@ export function useTableStyle(tableName?: string) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- // if (tableName?.includes('WaybillGoods')) {
|
|
|
- // if (['CargoSN'].includes(column.property)) {
|
|
|
- // classes.push('cell-click')
|
|
|
- // }
|
|
|
- // }
|
|
|
-
|
|
|
return classes.join(' ')
|
|
|
}
|
|
|
|