From 36eedb05a35e9e51efe74d71f7eb623afea84756 Mon Sep 17 00:00:00 2001 From: hwj Date: Mon, 9 Feb 2026 16:44:14 +0800 Subject: [PATCH] =?UTF-8?q?style=EF=BC=9A=E5=8E=86=E5=8F=B2=E8=AE=B0?= =?UTF-8?q?=E5=BD=95=E6=9F=A5=E8=AF=A2/=E6=95=B0=E6=8D=AE=E5=AE=9E?= =?UTF-8?q?=E6=97=B6=E7=9B=91=E6=8E=A7-=E6=95=B0=E6=8D=AE=E4=B8=BAnull?= =?UTF-8?q?=E6=97=B6=E6=98=BE=E7=A4=BA-?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/iot/historyData/HistorySingleDeviceDialog.vue | 2 +- src/views/iot/realTimeMonitoring/SingleDeviceMonitorDialog.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/iot/historyData/HistorySingleDeviceDialog.vue b/src/views/iot/historyData/HistorySingleDeviceDialog.vue index 8c50784e..95de4f2c 100644 --- a/src/views/iot/historyData/HistorySingleDeviceDialog.vue +++ b/src/views/iot/historyData/HistorySingleDeviceDialog.vue @@ -191,7 +191,7 @@ const buildSectionsFromGroups = (groups: Record): Section[] => { const label = item?.attributeName ?? `${t('DataCollection.HistoryData.defaultFieldLabelPrefix')}${index + 1}` columns.push({ prop, label }) - row[prop] = item?.addressValue ?? '' + row[prop] = item?.addressValue ?? '-' }) } result.push({ diff --git a/src/views/iot/realTimeMonitoring/SingleDeviceMonitorDialog.vue b/src/views/iot/realTimeMonitoring/SingleDeviceMonitorDialog.vue index 4b60ed34..2fe7cb1c 100644 --- a/src/views/iot/realTimeMonitoring/SingleDeviceMonitorDialog.vue +++ b/src/views/iot/realTimeMonitoring/SingleDeviceMonitorDialog.vue @@ -147,7 +147,7 @@ const buildSectionsFromGroups = (groups: Record): Section[] => { const label = item?.attributeName ?? `${t('DataCollection.RealTimeMonitoring.defaultFieldLabelPrefix')}${index + 1}` columns.push({ prop, label }) - row[prop] = item?.addressValue ?? '' + row[prop] = item?.addressValue ?? '-' }) } result.push({