Newer
Older
import {Component, OnInit} from '@angular/core';
import {SystemService} from '../system.service';
selector: 'jhi-examine',
templateUrl: './examine.component.html',
styles: []
constructor(private systemSer: SystemService) {
}
ngOnInit() {
this.getRole();
this.getList();
}
getRole() {
this.systemSer.currentUserRoles().subscribe(
(res) => {
}
);
}
getList() {
}
)
this.systemSer.unApproveList().subscribe(
(res)=>{
}
)