mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-25 07:14:43 +08:00
feat: 删除多余代码 (#6463)
This commit is contained in:
parent
d2ca265cc2
commit
1dfbca3d5b
1 changed files with 0 additions and 5 deletions
|
@ -461,11 +461,6 @@ const onLoadCurrentInfo = async (scope: string) => {
|
||||||
res.data.netBytesSent - currentInfo.value.netBytesSent > 0
|
res.data.netBytesSent - currentInfo.value.netBytesSent > 0
|
||||||
? Number(((res.data.netBytesSent - currentInfo.value.netBytesSent) / 1024 / timeInterval).toFixed(2))
|
? Number(((res.data.netBytesSent - currentInfo.value.netBytesSent) / 1024 / timeInterval).toFixed(2))
|
||||||
: 0;
|
: 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);
|
netBytesSents.value.push(currentChartInfo.netBytesSent);
|
||||||
|
|
||||||
if (netBytesSents.value.length > 20) {
|
if (netBytesSents.value.length > 20) {
|
||||||
|
|
Loading…
Reference in a new issue