This commit is contained in:
tiago.kayaya
2021-07-09 14:44:17 +01:00
28 changed files with 234 additions and 77 deletions
@@ -64,8 +64,11 @@ export class DespachosPrPage implements OnInit {
ngOnInit() {
//Inicializar segment
this.segment = "despachos";
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.LoadList();
}
});
@@ -39,8 +39,11 @@ constructor(
}
ngOnInit() {
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.refreshing();
}
});
@@ -36,8 +36,10 @@ export class EventListPage implements OnInit {
this.LoadToApproveEvents();
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.LoadToApproveEvents();
}
});
@@ -40,8 +40,11 @@ export class ExpedientePage implements OnInit {
ngOnInit() {
this.LoadList();
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.LoadList();
}
});
@@ -40,8 +40,11 @@ export class ExpedientesPrPage implements OnInit {
}
ngOnInit() {
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.refreshing();
}
});
@@ -98,7 +98,6 @@ export class GabineteDigitalPage implements OnInit {
}
};
this.checkRoutes();
this.checkUser();
}
@@ -112,9 +111,15 @@ export class GabineteDigitalPage implements OnInit {
ngOnInit() {
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == pathname) {
this.checkRoutes();
this.LoadCounts();
console.log('yes', pathname)
} else {
console.log('not')
}
});
@@ -189,7 +194,7 @@ export class GabineteDigitalPage implements OnInit {
this.selectedElement='DiplomasAssinar';
}
else{
this.checkRoutes();
this.checkUser();
}
}
@@ -38,8 +38,10 @@ export class PendentesPage implements OnInit {
ngOnInit() {
//Inicializar segment
this.segment = "despachos";
const pathname = window.location.pathname
this.router.events.forEach((event) => {
if(event instanceof NavigationEnd && event.url == this.router.url) {
if(event instanceof NavigationEnd && event.url == pathname) {
this.refreshing();
}
});