ing discovery result
This commit is contained in:
parent
4ae2106219
commit
a188d377c0
|
@ -145,14 +145,30 @@ export class SettingComponent implements OnInit, AfterContentInit {
|
|||
|
||||
findHost(host) {
|
||||
|
||||
const jHost: any = {
|
||||
title: 'Host - ' + host.ip,
|
||||
className : 'cn' + host.ip
|
||||
};
|
||||
jHost.obj = host;
|
||||
|
||||
}
|
||||
|
||||
findPort(port) {
|
||||
|
||||
const jPort: any = {
|
||||
title: 'Port - ' + port.portNumber,
|
||||
className : 'cn' + port.portNumber,
|
||||
};
|
||||
jPort.obj = port;
|
||||
|
||||
}
|
||||
|
||||
findService(service) {
|
||||
|
||||
const jService: any = {
|
||||
title: 'Service - ' + service.serviceName,
|
||||
className : 'cn' + service.serviceName,
|
||||
};
|
||||
jService.obj = service;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user