|
|
|
@ -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 { |
|
|
|
|