From d1a835a9cbae4e77012f8528b36e356b0ae26463 Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Tue, 30 Apr 2024 17:06:46 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=93=BE=E8=B7=AF?= =?UTF-8?q?=E5=9B=9B=E5=85=83=E7=BB=84=E5=9B=BE=E5=AD=97=E6=AE=B5=E5=90=8D?= =?UTF-8?q?=E6=9C=AA=E5=8D=87=E7=BA=A7=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit a26b0c848d47c2d5d609ba765832e4ff97dec6fa) --- src/views/charts2/charts/linkMonitor/LinkTrafficSankey.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/charts2/charts/linkMonitor/LinkTrafficSankey.vue b/src/views/charts2/charts/linkMonitor/LinkTrafficSankey.vue index 4b5b5b32..5929a88f 100644 --- a/src/views/charts2/charts/linkMonitor/LinkTrafficSankey.vue +++ b/src/views/charts2/charts/linkMonitor/LinkTrafficSankey.vue @@ -168,7 +168,7 @@ export default { if (tab === 0) { result.forEach(t => { this.cnLinkInfo.forEach(e => { - if (parseInt(t.commonInLinkId) === e.linkId) { + if (parseInt(t.inLinkId) === e.linkId) { t.linkId = e.interfaceName t.linkDirection = e.peerCity t.bandwidth = e.bandwidth @@ -182,7 +182,7 @@ export default { } else { result.forEach(t => { this.cnLinkInfo.forEach(e => { - if (parseInt(t.commonOutLinkId) === e.linkId) { + if (parseInt(t.outLinkId) === e.linkId) { t.linkId = e.interfaceName t.bandwidth = e.bandwidth t.linkDirection = e.peerCity