|
@@ -97,11 +97,11 @@
|
|
import { Download } from '@element-plus/icons-vue'
|
|
import { Download } from '@element-plus/icons-vue'
|
|
import Search from '@/components/search/index.vue'
|
|
import Search from '@/components/search/index.vue'
|
|
import Steps from '@/components/steps/index.vue'
|
|
import Steps from '@/components/steps/index.vue'
|
|
-import ColumnSet from '../../components/ColumnSet/index.vue'
|
|
|
|
|
|
+import ColumnSet from '@/components/ColumnSet/index.vue'
|
|
import SimpleTable from '@/components/SimpleTable/index.vue'
|
|
import SimpleTable from '@/components/SimpleTable/index.vue'
|
|
import { useTrackData } from '../../hooks/useTrackData'
|
|
import { useTrackData } from '../../hooks/useTrackData'
|
|
import { useTable } from '../../hooks/useTable'
|
|
import { useTable } from '../../hooks/useTable'
|
|
-import { useTableColumnSet } from '../../hooks/useTableColumnSet'
|
|
|
|
|
|
+import { useTableColumnSet } from '@/hooks/useTableColumnSet'
|
|
import { useTableExport } from '../../hooks/useTableExport'
|
|
import { useTableExport } from '../../hooks/useTableExport'
|
|
import { useTableStyle } from '../../hooks/useTableStyle'
|
|
import { useTableStyle } from '../../hooks/useTableStyle'
|
|
import { useTableCellClick } from '../../hooks/useTableCellClick'
|
|
import { useTableCellClick } from '../../hooks/useTableCellClick'
|
|
@@ -136,64 +136,81 @@ useLoop([getWaybillInfo, getTableData], 'waybill')
|
|
|
|
|
|
const { trackAirlines, trackBoxStyle } = useTrackData(props.name, trackData)
|
|
const { trackAirlines, trackBoxStyle } = useTrackData(props.name, trackData)
|
|
|
|
|
|
-const tableData = computed(() =>
|
|
|
|
- trackData.value.reduce((data, current) => {
|
|
|
|
- const sameRow = data.find(row =>
|
|
|
|
- ['stockCode', 'flightNO', 'flightDate', 'CargoSN'].every(
|
|
|
|
- key => row[key] === current[key]
|
|
|
|
|
|
+const tableData = computed(() => {
|
|
|
|
+ const mergedTableData = trackData.value.reduce(
|
|
|
|
+ (data: CommonData[], current) => {
|
|
|
|
+ const sameRow = data.find(row =>
|
|
|
|
+ ['stockCode', 'flightNO', 'flightDate', 'cargoSN'].every(
|
|
|
|
+ key => row[key] === current[key]
|
|
|
|
+ )
|
|
)
|
|
)
|
|
- )
|
|
|
|
- const {
|
|
|
|
- stockCode,
|
|
|
|
- flightNO,
|
|
|
|
- flightDate,
|
|
|
|
- departureAirport, // 装载机场
|
|
|
|
- arriveAirport, // 卸载机场
|
|
|
|
- ULDNO,
|
|
|
|
- CargoSN,
|
|
|
|
- pullMark,
|
|
|
|
- returnMark,
|
|
|
|
- // transMark,
|
|
|
|
- exceptionCustomsMark,
|
|
|
|
- execPosition, // 读取位置
|
|
|
|
- nodeCode, // 节点名称
|
|
|
|
- ConsignmentItemPackagingQuantityQuantity, // 跟踪节点件数
|
|
|
|
- execResult,
|
|
|
|
- execTime,
|
|
|
|
- } = current
|
|
|
|
- const nodeValue = `${execPosition ?? ''}\n${
|
|
|
|
- execResult ? '通过' : '未通过'
|
|
|
|
- }\n${execTime ?? ''}`
|
|
|
|
- if (sameRow) {
|
|
|
|
- sameRow[String(nodeCode)] = nodeValue
|
|
|
|
- ;[
|
|
|
|
- 'ULDNO',
|
|
|
|
- // 'CargoSN'
|
|
|
|
- ].forEach(key => {
|
|
|
|
- const oldValue = sameRow[key]
|
|
|
|
- const currentValue = current[key]
|
|
|
|
- if (typeof currentValue === 'string' && currentValue !== oldValue) {
|
|
|
|
- if (typeof oldValue === 'string') {
|
|
|
|
- sameRow[key] = [
|
|
|
|
- ...new Set([...oldValue.split(','), ...currentValue.split(',')]),
|
|
|
|
- ].join(',')
|
|
|
|
- } else {
|
|
|
|
- sameRow[key] = currentValue
|
|
|
|
|
|
+ const {
|
|
|
|
+ stockCode,
|
|
|
|
+ flightNO,
|
|
|
|
+ flightDate,
|
|
|
|
+ departureAirport, // 装载机场
|
|
|
|
+ arriveAirport, // 卸载机场
|
|
|
|
+ ULDNO,
|
|
|
|
+ cargoSN,
|
|
|
|
+ pullMark,
|
|
|
|
+ returnMark,
|
|
|
|
+ // transMark,
|
|
|
|
+ exceptionCustomsMark,
|
|
|
|
+ execPosition, // 读取位置
|
|
|
|
+ nodeCode, // 节点名称
|
|
|
|
+ ConsignmentItemPackagingQuantityQuantity, // 跟踪节点件数
|
|
|
|
+ execResult,
|
|
|
|
+ execTime,
|
|
|
|
+ } = current
|
|
|
|
+ const nodeValue = `${execPosition ?? ''}\n${
|
|
|
|
+ execResult ? '通过' : '未通过'
|
|
|
|
+ }\n${execTime ?? ''}`
|
|
|
|
+ if (sameRow) {
|
|
|
|
+ sameRow[String(nodeCode)] = nodeValue
|
|
|
|
+ ;[
|
|
|
|
+ 'ULDNO',
|
|
|
|
+ // 'cargoSN'
|
|
|
|
+ ].forEach(key => {
|
|
|
|
+ const oldValue = sameRow[key]
|
|
|
|
+ const currentValue = current[key]
|
|
|
|
+ if (typeof currentValue === 'string' && currentValue !== oldValue) {
|
|
|
|
+ if (typeof oldValue === 'string') {
|
|
|
|
+ sameRow[key] = [
|
|
|
|
+ ...new Set([
|
|
|
|
+ ...oldValue.split(','),
|
|
|
|
+ ...currentValue.split(','),
|
|
|
|
+ ]),
|
|
|
|
+ ].join(',')
|
|
|
|
+ } else {
|
|
|
|
+ sameRow[key] = currentValue
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
- })
|
|
|
|
- ;['pullMark', 'returnMark'].forEach(key => {
|
|
|
|
- sameRow[key] = sameRow[key] ?? current[key]
|
|
|
|
- })
|
|
|
|
- } else {
|
|
|
|
- data.push({
|
|
|
|
|
|
+ })
|
|
|
|
+ ;['pullMark', 'returnMark'].forEach(key => {
|
|
|
|
+ sameRow[key] = sameRow[key] ?? current[key]
|
|
|
|
+ })
|
|
|
|
+ } else {
|
|
|
|
+ data.push({
|
|
|
|
+ ...current,
|
|
|
|
+ [String(nodeCode)]: nodeValue,
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ return data
|
|
|
|
+ },
|
|
|
|
+ []
|
|
|
|
+ )
|
|
|
|
+ return mergedTableData.reduce((data: CommonData[], current) => {
|
|
|
|
+ const { cargoSN } = current
|
|
|
|
+ if (typeof cargoSN === 'string') {
|
|
|
|
+ const splitedRows = cargoSN.split(',').map(splitedCargoSN => ({
|
|
...current,
|
|
...current,
|
|
- [String(nodeCode)]: nodeValue,
|
|
|
|
- })
|
|
|
|
|
|
+ cargoSN: splitedCargoSN,
|
|
|
|
+ }))
|
|
|
|
+ data.push(...splitedRows)
|
|
}
|
|
}
|
|
return data
|
|
return data
|
|
- }, [] as CommonData[])
|
|
|
|
-)
|
|
|
|
|
|
+ }, [])
|
|
|
|
+})
|
|
|
|
|
|
const formatter = (row, column, cellValue, index) => {
|
|
const formatter = (row, column, cellValue, index) => {
|
|
const value = String(cellValue ?? '').split('\n')
|
|
const value = String(cellValue ?? '').split('\n')
|