fix:【antd】【iot】修正导出功能中的时间格式化为更精确的格式
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user