From 1dfbca3d5b4e323670a3c4350872b4da81e03ee5 Mon Sep 17 00:00:00 2001 From: zhengkunwang <31820853+zhengkunwang223@users.noreply.github.com> Date: Wed, 11 Sep 2024 23:10:15 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=88=A0=E9=99=A4=E5=A4=9A=E4=BD=99?= =?UTF-8?q?=E4=BB=A3=E7=A0=81=20(#6463)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/home/index.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/views/home/index.vue b/frontend/src/views/home/index.vue index 0077e4bbb..2726f1102 100644 --- a/frontend/src/views/home/index.vue +++ b/frontend/src/views/home/index.vue @@ -461,11 +461,6 @@ const onLoadCurrentInfo = async (scope: string) => { res.data.netBytesSent - currentInfo.value.netBytesSent > 0 ? Number(((res.data.netBytesSent - currentInfo.value.netBytesSent) / 1024 / timeInterval).toFixed(2)) : 0; - console.log('value', res.data.netBytesSent - currentInfo.value.netBytesSent); - console.log( - 'number', - Number(((res.data.netBytesSent - currentInfo.value.netBytesSent) / 1024 / timeInterval).toFixed(2)), - ); netBytesSents.value.push(currentChartInfo.netBytesSent); if (netBytesSents.value.length > 20) {