stylebitacoramesas

This commit is contained in:
2026-03-20 18:50:06 -04:00
parent edd4e6f0c0
commit 22753e9d84
5 changed files with 27 additions and 6 deletions
@@ -42,8 +42,8 @@ export default function BitacoraMesas() {
<>
<SearchDate />
<div>
<table>
<div style={{ maxHeight: "400px", overflowY: "auto", border: "1px solid #ccc" }}>
<table style={{ width: "100%", borderCollapse: "collapse" }}>
<thead>
<tr>
<th>Mesa</th>
@@ -77,4 +77,3 @@ export default function BitacoraMesas() {
</>
);
}
//IO
+5
View File
@@ -84,6 +84,11 @@ export default function Equipos() {
if (!data) return;
try {
console.log({
id_equipo: data.id_equipo,
id_plataforma: idPlataforma,
nombre
});
await axios.patch(`${envConfig.apiUrl}/equipo`, {
id_equipo: data.id_equipo,
nombre_equipo: nombre,
+1 -2
View File
@@ -46,5 +46,4 @@ export default function SearchDate() {
</form>
);
}
//IO
//By Tyrannuss