feat: 删除多余代码 (#6463)
Some checks failed
Build Test / build-linux-binary (push) Failing after -8m48s
Build / SonarCloud (push) Failing after -8m55s
sync2gitee / repo-sync (push) Failing after -9m1s

This commit is contained in:
zhengkunwang 2024-09-11 23:10:15 +08:00 committed by GitHub
parent d2ca265cc2
commit 1dfbca3d5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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) {