added censado por and tring to fix reportes
This commit is contained in:
@@ -8,6 +8,7 @@ import Pregunta7EP from "@/components/Perifericos/Pregunta7EP";
|
||||
import Pregunta9 from "@/components/Equipo_Computo/Pregunta9";
|
||||
import "../../styles/layout/reporte.scss";
|
||||
import Pregunta8 from "@/components/Perifericos/Pregunta8";
|
||||
import DownloadReporteXLSX from "@/components/Dowload/Reporte";
|
||||
|
||||
type PreguntaKey =
|
||||
| "pregunta1"
|
||||
@@ -22,7 +23,7 @@ const LABELS: Record<PreguntaKey, string> = {
|
||||
pregunta2: "Sistema Operativo",
|
||||
pregunta3: "Plataforma y tipo procesador",
|
||||
pregunta7EP: "Laboratorios",
|
||||
pregunta8:"Proyectos",
|
||||
pregunta8: "Proyectos",
|
||||
pregunta9: "Generales",
|
||||
};
|
||||
|
||||
@@ -32,7 +33,7 @@ const TAB_BACKGROUNDS: Record<PreguntaKey, string> = {
|
||||
pregunta2: "bg-gray",
|
||||
pregunta3: "bg-gray",
|
||||
pregunta7EP: "bg-gray",
|
||||
pregunta8:"bg-gray",
|
||||
pregunta8: "bg-gray",
|
||||
pregunta9: "bg-blue",
|
||||
};
|
||||
|
||||
@@ -48,7 +49,7 @@ export default function Page() {
|
||||
case "pregunta3":
|
||||
return <Pregunta3 />;
|
||||
case "pregunta7EP":
|
||||
return <Pregunta7EP />
|
||||
return <Pregunta7EP />;
|
||||
case "pregunta8":
|
||||
return <Pregunta8 />;
|
||||
case "pregunta9":
|
||||
@@ -80,6 +81,7 @@ export default function Page() {
|
||||
{label}
|
||||
</button>
|
||||
))}
|
||||
<DownloadReporteXLSX />
|
||||
</div>
|
||||
<div className={`data-table_reporte ${currentBgClass}`}>
|
||||
{renderPregunta()}
|
||||
|
||||
@@ -40,7 +40,6 @@ export default function Page() {
|
||||
return (
|
||||
<>
|
||||
<Pregunta7 />
|
||||
<DownloadReporteXLSX/>
|
||||
</>
|
||||
);
|
||||
default:
|
||||
@@ -68,6 +67,7 @@ export default function Page() {
|
||||
{label}
|
||||
</button>
|
||||
))}
|
||||
<DownloadReporteXLSX/>
|
||||
</div>
|
||||
<div className={`data-table_reporte`}>{renderPregunta()}</div>
|
||||
</div>
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
justify-content: center;
|
||||
|
||||
.innerContainer {
|
||||
position: relative;
|
||||
max-width: 1000px;
|
||||
width: 100%;
|
||||
padding: 1rem 2rem;
|
||||
@@ -80,7 +81,7 @@ textarea {
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
align-items: end;
|
||||
gap: 30px;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
.btnGuardar {
|
||||
|
||||
Reference in New Issue
Block a user