|
@@ -108,8 +108,9 @@ import { useTableExport } from '../../hooks/useTableExport'
|
|
|
import { useTableStyle } from '../../hooks/useTableStyle'
|
|
|
import { useTableCellClick } from '../../hooks/useTableCellClick'
|
|
|
import { useWaybillInfo } from './useWaybillInfo'
|
|
|
-import { CommonData, CommonTableFormatter } from '~/common'
|
|
|
+import { CommonData, CommonTableFormatter, CommonValue } from '~/common'
|
|
|
import { useLoop } from '@/hooks/useLoop'
|
|
|
+import { datetimeToTime } from '@/utils/validate'
|
|
|
|
|
|
const props = defineProps({
|
|
|
name: {
|
|
@@ -249,15 +250,7 @@ const tableData = computed(() => {
|
|
|
const formatter: CommonTableFormatter = (row, column, cellValue, index) => {
|
|
|
const value = String(cellValue ?? '').split('\n')
|
|
|
if (value[2]) {
|
|
|
- const [date, time] = value[2].split('T')
|
|
|
- let clipTime = time.slice(0, -3)
|
|
|
- if (date !== flightDate) {
|
|
|
- const days =
|
|
|
- (new Date(date).getTime() - new Date(flightDate as string).getTime()) /
|
|
|
- (24 * 60 * 60 * 1000)
|
|
|
- clipTime += ` (${days > 0 ? '+' : ''}${days})`
|
|
|
- }
|
|
|
- value[2] = clipTime
|
|
|
+ value[2] = datetimeToTime(value[2], flightDate as CommonValue)
|
|
|
}
|
|
|
return value.join('\n')
|
|
|
}
|