diff --git a/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.html b/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.html index a864e58526..84644f1697 100644 --- a/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.html +++ b/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.html @@ -26,7 +26,8 @@ {{protocolo.data.tipoMuestra}}
Prácticas solicitadas: {{protocolo.data.practicasSolicitadas}}
+ *ngIf="protocolo.data.practicasSolicitadas">{{protocolo.data.practicasSolicitadas}} + @@ -34,12 +35,18 @@
+ tooltip="Descargar" (click)="descargarLab()">
{{area.area}}
+
+
+
Resultado
+
Valor Referencia
+
Firma
+
{{unGrupo.grupo}} diff --git a/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.scss b/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.scss index 2fa8d278e6..7d2e2a2e7f 100644 --- a/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.scss +++ b/src/app/modules/rup/components/ejecucion/laboratorios/vista-laboratorio.scss @@ -38,6 +38,31 @@ $lightblue: #d6f7ff; margin-bottom: 10px; } +.table-header-row { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 0; + padding: 10px 0; +} + +.table-header-col { + font-size: small; + font-weight: 800; + padding: 5px; + word-break: break-word; + + &:nth-child(1) { + text-align: left; + } + + &:nth-child(2), + &:nth-child(3), + &:nth-child(4) { + text-align: center; + font-size: 1em; + } +} + .badge-protocolo { display: flex; gap: 4px;