|
@@ -36,7 +36,10 @@ const tableData = ref<VxeGridProps<any>>({
|
|
|
field: 'Recommended Delivery Date',
|
|
field: 'Recommended Delivery Date',
|
|
|
title: 'Recommended Delivery Date',
|
|
title: 'Recommended Delivery Date',
|
|
|
width: 220,
|
|
width: 220,
|
|
|
- formatter: ({ cellValue }: any) => formatTimezone(cellValue)
|
|
|
|
|
|
|
+ formatter: ({ cellValue }: any) => {
|
|
|
|
|
+ const rangeData = cellValue.split(';')
|
|
|
|
|
+ return formatTimezone(rangeData[0]) + ' -- ' + formatTimezone(rangeData[1])
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
],
|
|
],
|
|
|
data: [],
|
|
data: [],
|