From 9c230c2da9d5413cc9f798b030806c0e66e4c66e Mon Sep 17 00:00:00 2001 From: "2248356998 qq.com" <2248356998@qq.com> Date: Thu, 16 Oct 2025 17:39:57 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20ui=20json=E6=98=BE=E7=A4=BA=E4=B8=8D?= =?UTF-8?q?=E7=BC=A9=E8=BF=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Pages/GatewayMonitorPage/Variable/VariableModelUtils.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Gateway/ThingsGateway.Gateway.Razor/Pages/GatewayMonitorPage/Variable/VariableModelUtils.cs b/src/Gateway/ThingsGateway.Gateway.Razor/Pages/GatewayMonitorPage/Variable/VariableModelUtils.cs index 05bb273dd..8ddb23b03 100644 --- a/src/Gateway/ThingsGateway.Gateway.Razor/Pages/GatewayMonitorPage/Variable/VariableModelUtils.cs +++ b/src/Gateway/ThingsGateway.Gateway.Razor/Pages/GatewayMonitorPage/Variable/VariableModelUtils.cs @@ -32,11 +32,11 @@ public static class VariableModelUtils switch (fieldName) { case nameof(VariableRuntime.Value): - return row.Value?.ToSystemTextJsonString() ?? string.Empty; + return row.Value?.ToSystemTextJsonString(false) ?? string.Empty; case nameof(VariableRuntime.RawValue): - return row.RawValue?.ToSystemTextJsonString() ?? string.Empty; + return row.RawValue?.ToSystemTextJsonString(false) ?? string.Empty; case nameof(VariableRuntime.LastSetValue): - return row.LastSetValue?.ToSystemTextJsonString() ?? string.Empty; + return row.LastSetValue?.ToSystemTextJsonString(false) ?? string.Empty; case nameof(VariableRuntime.ChangeTime): return row.ChangeTime.ToString("dd-HH:mm:ss.fff");