From f7f0e44c4be8eb0e77fd310296c3b43bde21e4f9 Mon Sep 17 00:00:00 2001 From: ZZJ <10913410+zzj2100@user.noreply.gitee.com> Date: 星期四, 23 六月 2022 14:17:01 +0800 Subject: [PATCH] 新增联动场景 --- src/Pool/PollData.ts | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/Pool/PollData.ts b/src/Pool/PollData.ts index da79eb0..1a50fc4 100644 --- a/src/Pool/PollData.ts +++ b/src/Pool/PollData.ts @@ -159,7 +159,9 @@ res = await clusterSysInfo({}); } else { - res = await devicesSysInfo({}); + res = await devicesSysInfo({ + deviceId:[sessionStorage.getItem('devId')], + }); } if (res && res.success ) { this.CpuUsedPercent =res.data.cpu.usedPercent.toFixed(2) @@ -178,7 +180,10 @@ res = await clusterStatisticRunInfo({}); } else { - res = await deviceStatisticRunInfo({}); + res = await deviceStatisticRunInfo({ + deviceId:[sessionStorage.getItem('devId')], + userId:'' + }); } if (res && res.success) { -- Gitblit v1.8.0