diff --git a/src/components/Perifericos/Pregunta1EP.tsx b/src/components/Perifericos/Pregunta1EP.tsx index 5290b43..bce8855 100644 --- a/src/components/Perifericos/Pregunta1EP.tsx +++ b/src/components/Perifericos/Pregunta1EP.tsx @@ -16,15 +16,15 @@ interface EquiposImpresion { export default function Pregunta1EP() { const [equipos, setEquipos] = useState({ - inyeccionTinta: "7", - laserPequenaBN: "186", - matrizPuntos: "", - laserAltoVolumenBN: "28", - laserPequenaColor: "20", - multifuncionales: "108", - laserAltoVolumenColor: "18", - impresora3D: "2", - plotter: "11", + inyeccionTinta: "0", + laserPequenaBN: "0", + matrizPuntos: "0", + laserAltoVolumenBN: "0", + laserPequenaColor: "0", + multifuncionales: "0", + laserAltoVolumenColor: "0", + impresora3D: "0", + plotter: "0", }); // 🔹 Preparado para conectar con API del backend @@ -51,9 +51,7 @@ export default function Pregunta1EP() { Censo de equipos periféricos - Equipo de Impresion -
- Equipos de impresión. -
+
Equipos de impresión.
{/* Columna 1 */} @@ -64,29 +62,7 @@ export default function Pregunta1EP() { id="inyeccionTinta" name="inyeccionTinta" value={equipos.inyeccionTinta} - onChange={handleChange} - /> -
- -
- - -
- -
- -
@@ -98,7 +74,31 @@ export default function Pregunta1EP() { id="laserAltoVolumenBN" name="laserAltoVolumenBN" value={equipos.laserAltoVolumenBN} - onChange={handleChange} + disabled + /> + + +
+ + +
+ +
+ +
@@ -109,32 +109,7 @@ export default function Pregunta1EP() { id="laserPequenaColor" name="laserPequenaColor" value={equipos.laserPequenaColor} - onChange={handleChange} - /> - - -
- - -
- - {/* Columna 3 */} -
- -
@@ -145,7 +120,29 @@ export default function Pregunta1EP() { id="impresora3D" name="impresora3D" value={equipos.impresora3D} - onChange={handleChange} + disabled + /> + + +
+ + +
+ +
+ +
@@ -156,7 +153,7 @@ export default function Pregunta1EP() { id="plotter" name="plotter" value={equipos.plotter} - onChange={handleChange} + disabled /> diff --git a/src/components/Perifericos/Pregunta4EP.tsx b/src/components/Perifericos/Pregunta4EP.tsx index ecfc7ec..71a0cb5 100644 --- a/src/components/Perifericos/Pregunta4EP.tsx +++ b/src/components/Perifericos/Pregunta4EP.tsx @@ -1,5 +1,5 @@ "use client"; -import React, { useState, useEffect } from "react"; +import { useState, useEffect } from "react"; import "@/app/styles/layout/pregunta4EP.scss"; import Cookies from "js-cookie"; import axios from "axios";