From 74045a2ee5a2d195d3600324d2df13493ced3f01 Mon Sep 17 00:00:00 2001 From: scrin <2277317060@qq.com> Date: Sun, 30 Nov 2025 14:42:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=9B=B7=E8=BE=BE=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/index.vue b/src/views/index.vue index fd4d89f..095a064 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -1375,10 +1375,11 @@ const processData = (data) => { // 设置表格1数据 const setTable1Data = (e) => { let fodInfo = e.DarDatas.filter(v => v.Lon !== 0 && v.Lat !== 0) + let time = e.TimeStamp tableData1.value = [...tableData1.value, ...fodInfo.map((v, k) => { return { ...v, - time: parseTime(v.time || v.Time), + time: parseTime(time), index: tableData1.value.length + k } })]