You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1003 B
46 lines
1003 B
3 years ago
|
import { Component, OnInit } from '@angular/core';
|
||
|
import { ActivatedRoute, Route, Router } from '@angular/router';
|
||
|
import { FormBuilder, FormControl, FormGroup, Validators } from '@angular/forms';
|
||
|
import { NzFormTooltipIcon } from 'ng-zorro-antd/form';
|
||
|
interface Camera {
|
||
|
name: string;
|
||
|
user: string;
|
||
|
password: string;
|
||
|
uri: string;
|
||
|
type: number
|
||
|
}
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-host-config',
|
||
|
templateUrl: './host-config.component.html',
|
||
|
styleUrls: ['./host-config.component.scss']
|
||
|
})
|
||
|
|
||
|
export class HostConfigComponent implements OnInit {
|
||
|
|
||
|
|
||
|
constructor(private router: Router, private route: ActivatedRoute, private fb: FormBuilder) { }
|
||
|
|
||
|
data
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
console.log(this.route.snapshot.params.id)
|
||
|
this.data = this.route.snapshot.params.id
|
||
|
}
|
||
|
listOfData: Camera[] = [
|
||
|
{
|
||
|
name: '1',
|
||
|
user: 'John Brown',
|
||
|
password: '32',
|
||
|
uri: 'New York No. 1 Lake Park',
|
||
|
type: 0
|
||
|
}
|
||
|
];
|
||
|
goback() {
|
||
|
history.go(-1)
|
||
|
}
|
||
|
addCamera(){
|
||
|
|
||
|
}
|
||
|
}
|