From 508264f86253b81997fb1b6e0914a5ea0a6f71eb Mon Sep 17 00:00:00 2001
From: chenjinsong <523037378@qq.com>
Date: Tue, 29 Aug 2023 16:29:08 +0800
Subject: [PATCH] =?UTF-8?q?fix:=20=E9=93=BE=E8=B7=AF=E4=B8=8B=E9=92=BB?=
=?UTF-8?q?=E5=B7=A6=E4=B8=8A=E8=A7=92=E5=88=97=E8=A1=A8=E6=9B=B4=E6=94=B9?=
=?UTF-8?q?=E6=95=B0=E5=80=BC=E6=98=BE=E7=A4=BA=E8=8C=83=E5=9B=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../LinkTrafficDrillDownList.vue | 22 +++++++++----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/views/charts2/charts/linkMonitor/localComponents/LinkTrafficDrillDownList.vue b/src/views/charts2/charts/linkMonitor/localComponents/LinkTrafficDrillDownList.vue
index 84171b31..f08952a8 100644
--- a/src/views/charts2/charts/linkMonitor/localComponents/LinkTrafficDrillDownList.vue
+++ b/src/views/charts2/charts/linkMonitor/localComponents/LinkTrafficDrillDownList.vue
@@ -7,16 +7,16 @@
{{$t('network.total')}}
- {{unitConvert(lineData.analysis.avg, unitTypes.number)[0]}}
+ {{valueToRangeValue(lineData.analysis.avg, unitTypes.number)[0]}}
- {{unitConvert(lineData.analysis.avg, unitTypes.number)[1]}}
+ {{valueToRangeValue(lineData.analysis.avg, unitTypes.number)[1]}}
{{lineData.unitType}}
{{$t('linkMonitor.bandwidthUsage')}}
-
{{unitConvert(lineData.analysis.avg / bandWidth, unitTypes.percent).join('')}}
+
{{valueToRangeValue(lineData.analysis.avg / bandWidth, unitTypes.percent).join('')}}
-
@@ -25,23 +25,23 @@
{{$t('networkAppPerformance.tcpConnectionEstablishLatency')}}
-
{{unitConvert(Math.floor(linkTrafficListData.establishLatencyMs), unitTypes.time).join('')}}
+
{{valueToRangeValue(Math.floor(linkTrafficListData.establishLatencyMs), unitTypes.time).join('')}}
{{$t('networkAppPerformance.httpResponse')}}
-
{{unitConvert(Math.floor(linkTrafficListData.httpResponseLatency), unitTypes.time).join('')}}
+
{{valueToRangeValue(Math.floor(linkTrafficListData.httpResponseLatency), unitTypes.time).join('')}}
{{$t('networkAppPerformance.sslResponseLatency')}}
-
{{unitConvert(Math.floor(linkTrafficListData.sslConLatency), unitTypes.time).join('')}}
+
{{valueToRangeValue(Math.floor(linkTrafficListData.sslConLatency), unitTypes.time).join('')}}
{{$t('networkAppPerformance.packetLoss')}}
-
{{unitConvert(linkTrafficListData.tcpLostlenPercent, unitTypes.percent).join('')}}
+
{{valueToRangeValue(linkTrafficListData.tcpLostlenPercent, unitTypes.percent).join('')}}
{{$t('overall.packetRetrans')}}
-
{{unitConvert(linkTrafficListData.pktRetransPercent, unitTypes.percent).join('')}}
+
{{valueToRangeValue(linkTrafficListData.pktRetransPercent, unitTypes.percent).join('')}}
@@ -50,7 +50,7 @@