From e8f530a0b9e3cbd07a35112656ca2c9e5ba53552 Mon Sep 17 00:00:00 2001 From: SHAOJIAHAO <55341701@qq.com> Date: Thu, 20 Apr 2023 08:20:43 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E8=BF=9B=E5=85=A5=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E9=A1=B5=E6=96=B0=E5=A2=9E=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../analysis-of-the-host.component.ts | 39 +++++++++++++------ .../host-config/host-config.component.ts | 11 ++++-- 2 files changed, 35 insertions(+), 15 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 46234e1..a888d98 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 @@ -223,20 +223,37 @@ export class AnalysisOfTheHostComponent implements OnInit { config(data) { this.isVisible = true; this.configdata = data; + // this.router.navigate([`/system/host/camera`], { + // queryParams: { + // hostId: this.configdata.id, + // orId: this.selectedOilStation.id, + // type: '交大', + // }, + // }); } handleOk(): void { - this.isVisible = false; - - setTimeout(() => { - this.router.navigate([`/system/host/camera`], { - queryParams: { - hostId: this.configdata.id, - orId: this.selectedOilStation.id, - type: this.radioValue, - }, - }); - }, 0); + let deviceProvider = this.radioValue === '交大' ? 0 : 1; + let body = { + deviceProvider: deviceProvider, + }; + this.http.put(`/api/EdgeDevices/${this.configdata.id}`, body).subscribe({ + next: (data) => { + this.isVisible = false; + setTimeout(() => { + this.router.navigate([`/system/host/camera`], { + queryParams: { + hostId: this.configdata.id, + orId: this.selectedOilStation.id, + type: this.radioValue, + }, + }); + }, 0); + }, + error: (err) => { + this.message.create('error', '更新边缘设备失败'); + }, + }); } handleCancel(): void { diff --git a/src/app/system-management/host-config/host-config.component.ts b/src/app/system-management/host-config/host-config.component.ts index 2eb9b68..04585e9 100644 --- a/src/app/system-management/host-config/host-config.component.ts +++ b/src/app/system-management/host-config/host-config.component.ts @@ -103,15 +103,18 @@ export class HostConfigComponent implements OnInit { }; this.isLoading = true; this.http.get('/api/Cameras', { params: params }).subscribe((data: any) => { + console.log('摄像头列表', data.items); data.items.forEach((element) => { element.dimensionedPointsObj = JSON.parse(element.dimensionedPoints); - element.dimensionedPointsHuanghaiObj = JSON.parse( - element.dimensionedPointsHuanghai - ); + if(element.dimensionedPointsHuanghai){ + element.dimensionedPointsHuanghaiObj = JSON.parse( + element.dimensionedPointsHuanghai + ); + } }); this.listOfData = data.items; this.isLoading = false; - console.log('摄像头列表', data.items); + }); } addCamera() {