From 968ed49fd47d9500f1e709794c7947cde0705dfa Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Wed, 22 Dec 2021 11:41:23 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=A2=9E=E5=8A=A0=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E5=88=97=E8=A1=A8=E6=95=B0=E9=87=8F=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis-of-the-host.component.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts index 9f2ba23..3738f00 100644 --- a/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts +++ b/src/app/system-management/analysis-of-the-host/analysis-of-the-host.component.ts @@ -72,7 +72,9 @@ export class AnalysisOfTheHostComponent implements OnInit { getHost() { this.http.get('/api/services/app/EdgeDevice/GetAll', { params: { - organizationUnitId: this.selectedOilStation.id + organizationUnitId: this.selectedOilStation.id, + SkipCount: '0', + MaxResultCount: '100', } }).subscribe((data: any) => { console.log('主机列表', data.result.items) @@ -86,10 +88,12 @@ export class AnalysisOfTheHostComponent implements OnInit { getCamera() { this.http.get('/api/services/app/Camera/GetAll', { params: { - organizationUnitId: this.selectedOilStation.id + organizationUnitId: this.selectedOilStation.id, + SkipCount: '0', + MaxResultCount: '100', } }).subscribe((data: any) => { - console.log('摄像头列表', data) + // console.log('摄像头列表', data) this.listOfDataCamera = data.result.items }) }