Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
import { Component, OnInit, Input } from '@angular/core';
import { AppSettingsService } from './../../shared/app-settings/app-settings.service';
import { MenuModel } from './../../shared/menu/menu.component.model';
@Component({
selector: 'app-ars-base',
templateUrl: './ars-base.component.html',
styleUrls: ['./ars-base.component.scss']
})
export class ArsBaseComponent implements OnInit {
menu: MenuModel;
@Input()
title = '';
@Input()
tabIdx = 0;
constructor(public appSettingsService: AppSettingsService) {}
ngOnInit() {
this.appSettingsService
.getMenu('ARS_MENU')
.subscribe(menu => (this.menu = menu));
}
}