|
|
@@ -1,16 +1,17 @@
|
|
|
-<mat-toolbar>
|
|
|
+<mat-toolbar style="height: 5vh;" (window:resize)="onResize($event)">
|
|
|
<mat-toolbar-row>
|
|
|
<button type="button" mat-button (click)="drawer.toggle()">
|
|
|
<mat-icon style="color: white">menu</mat-icon>
|
|
|
</button>
|
|
|
- <span style="color: white"> Sistema de Apoyo al Mantenimiento - SAM </span>
|
|
|
- <button mat-button style="color: white; margin-left: 1300px;" (click)="logout()">
|
|
|
+ <span style="color: white"> <span *ngIf="screen_small">Sistema de Apoyo al Mantenimiento - </span>SAM</span>
|
|
|
+ <span class="example-spacer"></span>
|
|
|
+ <button mat-button style="color: white;" (click)="logout()">
|
|
|
<mat-icon>logout</mat-icon> Cerra Sesión
|
|
|
</button>
|
|
|
</mat-toolbar-row>
|
|
|
</mat-toolbar>
|
|
|
|
|
|
-<mat-drawer-container class="example-container" autosize>
|
|
|
+<mat-drawer-container class="example-container" style="height: 90vh;" autosize >
|
|
|
<mat-drawer #drawer class="example-sidenav" mode="side">
|
|
|
<div>
|
|
|
<mat-expansion-panel (opened)="panelOpenState = true" (closed)="panelOpenState = false"
|
|
|
@@ -327,6 +328,11 @@
|
|
|
<mat-icon>sticky_note_2</mat-icon> Gestión de formularios
|
|
|
</a>
|
|
|
</div>
|
|
|
+ <div class="divBotones">
|
|
|
+ <button mat-button style="color: white" [routerLink]="['/sam/getbtb']">
|
|
|
+ <mat-icon>table_chart</mat-icon> Gestión de tablas
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
<div class="divBotones">
|
|
|
<a mat-button style="color: white" [routerLink]="['/sam/getbre']">
|
|
|
<mat-icon>account_tree</mat-icon> Gestión de relaciones
|
|
|
@@ -334,9 +340,36 @@
|
|
|
</div>
|
|
|
</mat-expansion-panel>
|
|
|
</div>
|
|
|
+ <div>
|
|
|
+ <mat-expansion-panel (opened)="panelOpenState = true" (closed)="panelOpenState = false"
|
|
|
+ class="mat-expansion-panel ng-tns-c191-1 ng-star-inserted mat-expanded">
|
|
|
+ <mat-expansion-panel-header>
|
|
|
+ <mat-panel-title style="color: white">
|
|
|
+ Plantillas Test
|
|
|
+ </mat-panel-title>
|
|
|
+ <mat-panel-description>
|
|
|
+ </mat-panel-description>
|
|
|
+ </mat-expansion-panel-header>
|
|
|
+ <div class="divBotones">
|
|
|
+ <button mat-button style="color: white" [routerLink]="['template-menu']">
|
|
|
+ <mat-icon>dashboard</mat-icon> Menú
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="divBotones">
|
|
|
+ <button mat-button style="color: white">
|
|
|
+ <mat-icon>table_chart</mat-icon> Consulta tablas
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ <div class="divBotones">
|
|
|
+ <button mat-button style="color: white">
|
|
|
+ <mat-icon>sticky_note_2</mat-icon> Formulario
|
|
|
+ </button>
|
|
|
+ </div>
|
|
|
+ </mat-expansion-panel>
|
|
|
+ </div>
|
|
|
</mat-drawer>
|
|
|
- <div class="sidenav-content">
|
|
|
+ <div style="background-color: white; height: 100%;">
|
|
|
<router-outlet></router-outlet>
|
|
|
</div>
|
|
|
</mat-drawer-container>
|
|
|
-<footer></footer>
|
|
|
+<footer style="height: 5vh;"></footer>
|