mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 13:55:51 +00:00
save
This commit is contained in:
@@ -153,7 +153,7 @@ export class AgendaPage implements OnInit {
|
|||||||
case "Combinada":
|
case "Combinada":
|
||||||
//Inicializa o array eventSource
|
//Inicializa o array eventSource
|
||||||
this.eventSource=[];
|
this.eventSource=[];
|
||||||
if(this.profile == "pr"){
|
if(this.profile == "mdgpr"){
|
||||||
this.eventService.getAllMdEvents(formatDate(startTime, 'yyyy-MM-dd HH:mm:ss', 'pt'), formatDate(endTime, 'yyyy-MM-dd HH:mm:ss', 'pt')).subscribe(
|
this.eventService.getAllMdEvents(formatDate(startTime, 'yyyy-MM-dd HH:mm:ss', 'pt'), formatDate(endTime, 'yyyy-MM-dd HH:mm:ss', 'pt')).subscribe(
|
||||||
response => {
|
response => {
|
||||||
this.eventsList = response;
|
this.eventsList = response;
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ ion-toolbar{
|
|||||||
}
|
}
|
||||||
.div-top-header{
|
.div-top-header{
|
||||||
width: 400px;
|
width: 400px;
|
||||||
height: 50px;
|
|
||||||
margin: 6px auto;
|
margin: 6px auto;
|
||||||
background-color: #0782c9;
|
background-color: #0782c9;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|||||||
+14
-1
@@ -1,5 +1,18 @@
|
|||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar>
|
<ion-toolbar class="bg-blue">
|
||||||
|
<div class="div-top-header">
|
||||||
|
<div class="div-search">
|
||||||
|
<ion-icon src='assets/images/icons-search.svg'></ion-icon>
|
||||||
|
</div>
|
||||||
|
<div class="div-logo">
|
||||||
|
<img src='assets/images/logo-no-bg.png' alt='logo'>
|
||||||
|
</div>
|
||||||
|
<div class="div-profile">
|
||||||
|
<ion-icon src='assets/images/icons-profile.svg'></ion-icon>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ion-toolbar>
|
||||||
|
<ion-toolbar class="bg-blue">
|
||||||
<ion-buttons slot="start">
|
<ion-buttons slot="start">
|
||||||
<ion-back-button defaultHref="/expediente"></ion-back-button>
|
<ion-back-button defaultHref="/expediente"></ion-back-button>
|
||||||
</ion-buttons>
|
</ion-buttons>
|
||||||
|
|||||||
+25
@@ -118,4 +118,29 @@ ion-button{
|
|||||||
height: 34px;
|
height: 34px;
|
||||||
float: right;
|
float: right;
|
||||||
margin:20px 20px 0 0;
|
margin:20px 20px 0 0;
|
||||||
|
}
|
||||||
|
.div-top-header{
|
||||||
|
width: 400px;
|
||||||
|
margin: 6px auto;
|
||||||
|
background-color: #0782c9;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
.div-search{
|
||||||
|
font-size: 45px;
|
||||||
|
float: left;
|
||||||
|
margin: 0 0 0 10px
|
||||||
|
}
|
||||||
|
.div-logo{
|
||||||
|
background: transparent;
|
||||||
|
width: 150px;
|
||||||
|
margin: 2.5px 0 2.5px 71px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.div-logo img{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.div-profile{
|
||||||
|
font-size: 45px;
|
||||||
|
float: right;
|
||||||
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,18 @@
|
|||||||
<ion-header>
|
<ion-header>
|
||||||
<ion-toolbar>
|
<ion-toolbar class="bg-blue">
|
||||||
|
<div class="div-top-header">
|
||||||
|
<div class="div-search">
|
||||||
|
<ion-icon src='assets/images/icons-search.svg'></ion-icon>
|
||||||
|
</div>
|
||||||
|
<div class="div-logo">
|
||||||
|
<img src='assets/images/logo-no-bg.png' alt='logo'>
|
||||||
|
</div>
|
||||||
|
<div class="div-profile">
|
||||||
|
<ion-icon src='assets/images/icons-profile.svg'></ion-icon>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</ion-toolbar>
|
||||||
|
<ion-toolbar class="bg-blue">
|
||||||
<ion-buttons slot="start">
|
<ion-buttons slot="start">
|
||||||
<ion-back-button defaultHref="/gabinete-digital"></ion-back-button>
|
<ion-back-button defaultHref="/gabinete-digital"></ion-back-button>
|
||||||
</ion-buttons>
|
</ion-buttons>
|
||||||
|
|||||||
@@ -121,4 +121,29 @@ ion-item{
|
|||||||
font-weight: 700;
|
font-weight: 700;
|
||||||
color: #0d89d1;
|
color: #0d89d1;
|
||||||
}
|
}
|
||||||
|
.div-top-header{
|
||||||
|
width: 400px;
|
||||||
|
margin: 6px auto;
|
||||||
|
background-color: #0782c9;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
.div-search{
|
||||||
|
font-size: 45px;
|
||||||
|
float: left;
|
||||||
|
margin: 0 0 0 10px
|
||||||
|
}
|
||||||
|
.div-logo{
|
||||||
|
background: transparent;
|
||||||
|
width: 150px;
|
||||||
|
margin: 2.5px 0 2.5px 71px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.div-logo img{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.div-profile{
|
||||||
|
font-size: 45px;
|
||||||
|
float: right;
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user