Skip to content

Commit

Permalink
feat: 删除多余代码 (#6463)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhengkunwang223 authored Sep 11, 2024
1 parent d2ca265 commit 1dfbca3
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions frontend/src/views/home/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1dfbca3

Please sign in to comment.