From ef5b7e9c07859219c7d8bb04fafb74b47700becf Mon Sep 17 00:00:00 2001 From: haohao <1036606149@qq.com> Date: Mon, 10 Nov 2025 17:12:25 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E3=80=90antd=E3=80=91=E3=80=90iot=E3=80=91?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=AF=BC=E5=87=BA=E5=8A=9F=E8=83=BD=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E6=97=B6=E9=97=B4=E6=A0=BC=E5=BC=8F=E5=8C=96=E4=B8=BA?= =?UTF-8?q?=E6=9B=B4=E7=B2=BE=E7=A1=AE=E7=9A=84=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/detail/DeviceDetailsThingModelPropertyHistory.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web-antd/src/views/iot/device/device/modules/detail/DeviceDetailsThingModelPropertyHistory.vue b/apps/web-antd/src/views/iot/device/device/modules/detail/DeviceDetailsThingModelPropertyHistory.vue index 80320a8e2..998486742 100644 --- a/apps/web-antd/src/views/iot/device/device/modules/detail/DeviceDetailsThingModelPropertyHistory.vue +++ b/apps/web-antd/src/views/iot/device/device/modules/detail/DeviceDetailsThingModelPropertyHistory.vue @@ -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,