fix:【antd】【iot】修正导出功能中的时间格式化为更精确的格式

pull/260/head
haohao 2025-11-10 17:12:25 +08:00
parent 35dc2960b8
commit ef5b7e9c07
1 changed files with 1 additions and 1 deletions

View File

@ -354,7 +354,7 @@ async function handleExport() {
...list.value.map((item, index) => {
return [
index + 1,
formatDate(new Date(item.updateTime)),
formatDateTime(new Date(item.updateTime)),
isComplexDataType.value
? `"${JSON.stringify(item.value)}"`
: item.value,