fix:【antd】【iot】修正导出功能中的时间格式化为更精确的格式
parent
35dc2960b8
commit
ef5b7e9c07
|
|
@ -354,7 +354,7 @@ async function handleExport() {
|
||||||
...list.value.map((item, index) => {
|
...list.value.map((item, index) => {
|
||||||
return [
|
return [
|
||||||
index + 1,
|
index + 1,
|
||||||
formatDate(new Date(item.updateTime)),
|
formatDateTime(new Date(item.updateTime)),
|
||||||
isComplexDataType.value
|
isComplexDataType.value
|
||||||
? `"${JSON.stringify(item.value)}"`
|
? `"${JSON.stringify(item.value)}"`
|
||||||
: item.value,
|
: item.value,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue