mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 05:16:07 +00:00
save
This commit is contained in:
@@ -320,9 +320,7 @@ export class EventsPage implements OnInit {
|
|||||||
"show": true,
|
"show": true,
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
this.router.navigate(['/home/gabinete-digital'], navigationExtras);
|
this.router.navigate(['/home/gabinete-digital'], navigationExtras);
|
||||||
/* this.gabineteService.openExpedientListPage(); */
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,14 +1,7 @@
|
|||||||
<ion-header class="ion-no-border">
|
<ion-header class="ion-no-border">
|
||||||
<ion-toolbar class="header-toolbar">
|
<div class="title">
|
||||||
<div class="main-header">
|
<ion-label >Correspondência</ion-label>
|
||||||
<div class="title-content">
|
|
||||||
<app-btn-modal-dismiss></app-btn-modal-dismiss>
|
|
||||||
<div class="middle">
|
|
||||||
<ion-label class="title">Gabinete Digital</ion-label>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</ion-toolbar>
|
|
||||||
<ion-toolbar>
|
<ion-toolbar>
|
||||||
<ion-segment [(ngModel)]="segment">
|
<ion-segment [(ngModel)]="segment">
|
||||||
<ion-segment-button value="expediente">
|
<ion-segment-button value="expediente">
|
||||||
@@ -20,7 +13,6 @@
|
|||||||
</ion-segment>
|
</ion-segment>
|
||||||
</ion-toolbar>
|
</ion-toolbar>
|
||||||
</ion-header>
|
</ion-header>
|
||||||
|
|
||||||
<ion-content>
|
<ion-content>
|
||||||
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
<ion-refresher name="refresher" slot="fixed" (ionRefresh)="doRefresh($event)">
|
||||||
<ion-refresher-content
|
<ion-refresher-content
|
||||||
@@ -31,29 +23,15 @@
|
|||||||
</ion-refresher-content>
|
</ion-refresher-content>
|
||||||
</ion-refresher>
|
</ion-refresher>
|
||||||
|
|
||||||
<div [ngSwitch]="segment" *ngIf="taskslist">
|
<div class="width-100" [ngSwitch]="segment" *ngIf="taskslist">
|
||||||
<ion-list *ngSwitchCase="'expediente'">
|
<ion-list *ngSwitchCase="'expediente'">
|
||||||
<ion-item-group>
|
|
||||||
<ion-item-sliding>
|
|
||||||
<!-- <ion-item lines="none" *ngFor = "let task of taskslist" >
|
|
||||||
<div class="div-content-expediente">
|
|
||||||
<ion-item lines="none" [routerLink]="['/home/gabinete-digital/expediente',task.SerialNumber]">
|
|
||||||
<ion-icon slot="end" name="calendar"></ion-icon>
|
|
||||||
<h3>{{ task.Folio }}</h3>
|
|
||||||
</ion-item>
|
|
||||||
<p><span class="span-left">{{task.Remetente}}</span><span class="span-right">{{ task.CreateDate | date: 'dd-MM-yy' }}</span></p>
|
|
||||||
<p><span class="span-left">{{ task.Senders }}</span><span class="span-right">{{ task.CreateDate | date: 'dd-MM-yy' }}</span></p>
|
|
||||||
</div>
|
|
||||||
</ion-item> -->
|
|
||||||
|
|
||||||
<ion-item
|
<ion-item
|
||||||
class="expediente"
|
class="expediente ion-no-padding"
|
||||||
lines="none"
|
|
||||||
*ngFor = "let task of taskslist"
|
*ngFor = "let task of taskslist"
|
||||||
(click)="viewExpedientDetail(task.SerialNumber)"
|
(click)="viewExpedientDetail(task.SerialNumber)"
|
||||||
>
|
>
|
||||||
<!-- [routerLink]="['/home/gabinete-digital/expediente',task.SerialNumber]" -->
|
<!-- [routerLink]="['/home/gabinete-digital/expediente',task.SerialNumber]" -->
|
||||||
<div class="Rectangle">
|
<div class="item width-100">
|
||||||
<div class="exp-top-detail">
|
<div class="exp-top-detail">
|
||||||
<div class="exp-date">
|
<div class="exp-date">
|
||||||
<ion-label>{{ task.CreateDate | date: 'dd-MM-yy' }}</ion-label>
|
<ion-label>{{ task.CreateDate | date: 'dd-MM-yy' }}</ion-label>
|
||||||
@@ -71,10 +49,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</ion-item>
|
</ion-item>
|
||||||
|
|
||||||
|
|
||||||
</ion-item-sliding>
|
|
||||||
</ion-item-group>
|
|
||||||
</ion-list>
|
</ion-list>
|
||||||
<ion-list *ngSwitchCase="'pendentes'">
|
<ion-list *ngSwitchCase="'pendentes'">
|
||||||
<ion-item-group>
|
<ion-item-group>
|
||||||
|
|||||||
@@ -1,83 +1,15 @@
|
|||||||
@import '~src/function.scss';
|
@import '~src/function.scss';
|
||||||
.header-toolbar{
|
|
||||||
--background:transparent;
|
|
||||||
--opacity: 1;
|
|
||||||
|
|
||||||
.main-header{
|
|
||||||
width: 100%; /* 400px */
|
|
||||||
height: 100%;
|
|
||||||
font-family: Roboto;
|
|
||||||
border-top-left-radius: 25px;
|
|
||||||
border-top-right-radius: 25px;
|
|
||||||
background-color: #fff;
|
|
||||||
overflow:hidden;
|
|
||||||
padding: 30px 20px 0px 20px;
|
|
||||||
color:#000;
|
|
||||||
transform: translate3d(0, 1px, 0);
|
|
||||||
|
|
||||||
.header-top{
|
|
||||||
width: 360px;
|
|
||||||
margin: 0px auto;
|
|
||||||
overflow: auto;
|
|
||||||
padding: 0 !important;
|
|
||||||
background: #fff;
|
|
||||||
.middle{
|
|
||||||
padding: 0!important;
|
|
||||||
float: left;
|
|
||||||
width: 280px;
|
|
||||||
margin: 2.5px 0 0 5px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
}
|
|
||||||
.right{
|
|
||||||
padding: 0!important;
|
|
||||||
float: right;
|
|
||||||
font-size: 25px;
|
|
||||||
color: #0782c9;
|
|
||||||
margin: 5px 0 0 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.header-bottom{
|
|
||||||
width: 310px;
|
|
||||||
overflow: auto;
|
|
||||||
margin: 0 auto;
|
|
||||||
|
|
||||||
.header-bottom-icon{
|
|
||||||
width: 30px;
|
|
||||||
font-size: 25px;
|
|
||||||
float: left;
|
|
||||||
padding: 2px;
|
|
||||||
|
|
||||||
}
|
|
||||||
.header-bottom-contacts{
|
|
||||||
width: 275px;
|
|
||||||
font-size: 15px;
|
|
||||||
color: #797979;
|
|
||||||
white-space: nowrap;
|
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
float: left;
|
|
||||||
padding: 5px;
|
|
||||||
margin: 1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.title{
|
|
||||||
font-size: 25px;
|
|
||||||
overflow: auto;
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
.div-icon{
|
|
||||||
width: 40px;
|
|
||||||
float: right;
|
|
||||||
font-size: 35px;
|
|
||||||
overflow: auto;
|
|
||||||
padding: 1px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* CONTENT */
|
/* CONTENT */
|
||||||
|
:host{
|
||||||
|
padding: 30px 20px 0 20px !important;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
.title{
|
||||||
|
font-family: Roboto;
|
||||||
|
font-size: 25px;
|
||||||
|
color:#000;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
.item-list-small{
|
.item-list-small{
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
@@ -95,6 +27,16 @@
|
|||||||
ion-item{
|
ion-item{
|
||||||
--background: none;
|
--background: none;
|
||||||
}
|
}
|
||||||
|
.item {
|
||||||
|
//border-radius: 15px;
|
||||||
|
//box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
|
||||||
|
//Sborder: solid 1px #e9e9e9;
|
||||||
|
background-color: var(--white);
|
||||||
|
margin: 0 auto;
|
||||||
|
//padding: 10px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
.div-content-expediente{
|
.div-content-expediente{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
float: left;
|
float: left;
|
||||||
@@ -152,7 +94,7 @@ ion-item{
|
|||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
}
|
}
|
||||||
.exp-list-item{
|
.exp-list-item{
|
||||||
width: 368px;
|
//width: 368px;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
/* border-bottom: 1px solid gray; */
|
/* border-bottom: 1px solid gray; */
|
||||||
margin: 10px auto;
|
margin: 10px auto;
|
||||||
@@ -174,7 +116,7 @@ ion-item{
|
|||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
.exp-remetente{
|
.exp-remetente{
|
||||||
width: 200px;
|
//width: 200px;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
@@ -193,7 +135,6 @@ ion-item{
|
|||||||
color: #42b9fe;
|
color: #42b9fe;
|
||||||
}
|
}
|
||||||
.exp-bottom-detail{
|
.exp-bottom-detail{
|
||||||
width: 100px;
|
|
||||||
float: left;
|
float: left;
|
||||||
font-family: Roboto;
|
font-family: Roboto;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@@ -225,4 +166,3 @@ ion-item{
|
|||||||
float: right;
|
float: right;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user