|
@@ -32,8 +32,8 @@ const trackNodesMap = {
|
|
|
// },
|
|
|
{
|
|
|
name: '安检',
|
|
|
- // nodeCode: '安检',
|
|
|
- nodeCode: 'SECURITY', // 临时-复制加货
|
|
|
+ nodeCode: '安检',
|
|
|
+ // nodeCode: 'SECURITY', // 临时-复制加货
|
|
|
},
|
|
|
{
|
|
|
name: '加货',
|
|
@@ -201,19 +201,20 @@ export function useTrackData(name: string, trackData: MaybeRef<CommonData[]>) {
|
|
|
const isInternational = name.includes('International')
|
|
|
|
|
|
const computedTrackData = computed(() => {
|
|
|
- if (name !== 'DepartureWaybill') {
|
|
|
- return unref(trackData)
|
|
|
- }
|
|
|
- return unref(trackData).reduce((prevData, currentNode) => {
|
|
|
- if (currentNode.nodeCode === 'ACC_BUP') {
|
|
|
- return [
|
|
|
- ...prevData,
|
|
|
- currentNode,
|
|
|
- { ...currentNode, nodeCode: 'SECURITY' },
|
|
|
- ]
|
|
|
- }
|
|
|
- return [...prevData, currentNode]
|
|
|
- }, [] as CommonData[])
|
|
|
+ // if (name !== 'DepartureWaybill') {
|
|
|
+ // return unref(trackData)
|
|
|
+ // }
|
|
|
+ // return unref(trackData).reduce((prevData, currentNode) => {
|
|
|
+ // if (currentNode.nodeCode === 'ACC_BUP') {
|
|
|
+ // return [
|
|
|
+ // ...prevData,
|
|
|
+ // currentNode,
|
|
|
+ // { ...currentNode, nodeCode: 'SECURITY' },
|
|
|
+ // ]
|
|
|
+ // }
|
|
|
+ // return [...prevData, currentNode]
|
|
|
+ // }, [] as CommonData[])
|
|
|
+ return unref(trackData)
|
|
|
})
|
|
|
|
|
|
const trackAirlines = ref<TrackAirline[]>([])
|