mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-21 05:45:50 +00:00
save
This commit is contained in:
@@ -15,12 +15,8 @@
|
|||||||
</ion-item>
|
</ion-item>
|
||||||
</ion-content>
|
</ion-content>
|
||||||
<ion-footer>
|
<ion-footer>
|
||||||
<ion-toolbar>
|
<div class="buttons width-100">
|
||||||
<div class="buttons">
|
<button class="btn-delete" shape="round" (click)="close()">Cancelar</button>
|
||||||
<ion-item lines="none">
|
<button class="btn-ok" shape="round" (click)="save()">Gravar</button>
|
||||||
<ion-button class="button-reject" shape="round" (click)="close()">Cancelar</ion-button>
|
|
||||||
<ion-button class="button-approve" shape="round" (click)="save()">Gravar</ion-button>
|
|
||||||
</ion-item>
|
|
||||||
</div>
|
</div>
|
||||||
</ion-toolbar>
|
|
||||||
</ion-footer>
|
</ion-footer>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
.header-content{
|
.header-content{
|
||||||
width: 360px;
|
//width: 360px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
margin: 25px auto;
|
margin: 25px auto;
|
||||||
}
|
}
|
||||||
@@ -39,3 +39,10 @@
|
|||||||
--background: #42b9fe;
|
--background: #42b9fe;
|
||||||
margin: 0 0px 0 12px;
|
margin: 0 0px 0 12px;
|
||||||
}
|
}
|
||||||
|
.buttons{
|
||||||
|
display: flex;
|
||||||
|
width: 100% !important;
|
||||||
|
justify-content: space-between;
|
||||||
|
padding: 15px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
@@ -18,7 +18,7 @@ export class EmendMessageModalPage implements OnInit {
|
|||||||
ngOnInit() {
|
ngOnInit() {
|
||||||
}
|
}
|
||||||
close(){
|
close(){
|
||||||
this.modalController.dismiss();
|
this.modalController.dismiss('');
|
||||||
}
|
}
|
||||||
save(){
|
save(){
|
||||||
this.modalController.dismiss(this.emendMessage);
|
this.modalController.dismiss(this.emendMessage);
|
||||||
|
|||||||
@@ -12,7 +12,10 @@
|
|||||||
|
|
||||||
<!-- Aside left -->
|
<!-- Aside left -->
|
||||||
<div class="aside-wrapper d-flex flex-column pt-25 justify-center width-md-40 ">
|
<div class="aside-wrapper d-flex flex-column pt-25 justify-center width-md-40 ">
|
||||||
<p class="text-center mt-0 aside-title px-20">Gabinete Digital</p>
|
<div class="title-container">
|
||||||
|
<span class="text-center mt-0 aside-title px-20">Gabinete Digital</span>
|
||||||
|
<ion-icon (click)="doRefresh($event)" class="title-icon" name="reload-circle"></ion-icon>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="aside overflow-y-auto d-flex d-md-block flex-wrap justify-center width-100 px-20">
|
<div class="aside overflow-y-auto d-flex d-md-block flex-wrap justify-center width-100 px-20">
|
||||||
<div class="exp-card d-flex flex-column justify-center" (click)="openEventsToApprovePage('MDGPR')">
|
<div class="exp-card d-flex flex-column justify-center" (click)="openEventsToApprovePage('MDGPR')">
|
||||||
|
|||||||
@@ -11,6 +11,15 @@ ion-content{
|
|||||||
ion-card-title{
|
ion-card-title{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
.title-container{
|
||||||
|
margin-bottom: 15px;
|
||||||
|
.title-icon{
|
||||||
|
float: right;
|
||||||
|
margin-right: 20px;
|
||||||
|
font-size: 30px;
|
||||||
|
color: #0782c9;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
ion-card{
|
ion-card{
|
||||||
background-color: #d4d5ca;
|
background-color: #d4d5ca;
|
||||||
|
|||||||
@@ -160,6 +160,8 @@ this.processesbackend.GetActionsList().subscribe(res=>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
doRefresh(event) {
|
doRefresh(event) {
|
||||||
|
this.closeAllDesktopComponents();
|
||||||
|
this.showEmptyContainer = true;
|
||||||
this.LoadCounts();
|
this.LoadCounts();
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
<ion-content>
|
<ion-content>
|
||||||
<div class="title width-100">
|
<div class="title width-100">
|
||||||
<label>Eventos para Aprovação</label>
|
<div class="title-container">
|
||||||
|
<span class="text-center mt-0 aside-title px-20"><label>Eventos para Aprovação</label></span>
|
||||||
|
<ion-icon (click)="doRefresh($event)" class="title-icon" name="reload-circle"></ion-icon>
|
||||||
|
</div>
|
||||||
<ion-toolbar>
|
<ion-toolbar>
|
||||||
<ion-segment [(ngModel)]="profile">
|
<ion-segment [(ngModel)]="profile">
|
||||||
<ion-segment-button value="MDGPR">
|
<ion-segment-button value="MDGPR">
|
||||||
|
|||||||
@@ -2,6 +2,15 @@
|
|||||||
padding: 30px 20px 0 20px !important;
|
padding: 30px 20px 0 20px !important;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
.title-container{
|
||||||
|
margin-bottom: 15px;
|
||||||
|
.title-icon{
|
||||||
|
float: right;
|
||||||
|
margin-right: 20px;
|
||||||
|
font-size: 30px;
|
||||||
|
color: #0782c9;
|
||||||
|
}
|
||||||
|
}
|
||||||
.title{
|
.title{
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
|
|||||||
Reference in New Issue
Block a user