ZZJ
2022-07-15 5c0c6ad7ac6f28e970532af9936de638830f1161
src/Pool/PollData.ts
@@ -156,10 +156,14 @@
    // 计算系统信息
     let res: any
    if(sessionStorage.getItem("clusterId")) {
      res  = await clusterSysInfo({});
      res  = await clusterSysInfo({
        clusterId: "",
      });
    }
    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 +182,10 @@
      res  = await clusterStatisticRunInfo({});
    }
    else {
      res  = await deviceStatisticRunInfo({});
      res  = await deviceStatisticRunInfo({
        deviceId:[sessionStorage.getItem('devId')],
        userId:''
      });
    }
   
    if (res && res.success) {