avances añadido listado de clientes y sus grupos

This commit is contained in:
2024-12-31 01:53:49 -03:00
parent bb860b1a16
commit f1c9632855
14 changed files with 266 additions and 20 deletions
@@ -5,6 +5,7 @@
import RowPropiedad from "../Componentes/RowPropiedad.svelte";
import type { PropiedadDto } from "../types";
import { urlG } from "../stores/urlStore";
import BarraHorizontalConTexto from "../Componentes/BarraHorizontalConTexto.svelte";
let propiedades = writable<PropiedadDto[]>([]);
let email = localStorage.getItem("email");
@@ -39,11 +40,10 @@
</script>
<NavBarAutocompletable/>
<h1 class="text-center">
Propiedades de Baja
</h1>
<div class="container table-responsive border border-success">
<table class="table-responsive table table-striped">
<BarraHorizontalConTexto text="Propiedades dadas de Baja"/>
<div class="container table-responsive">
<table class="table-responsive table table-striped table-bordered">
<thead>
<tr>
<th>#</th>
@@ -53,12 +53,12 @@
<th>Piso</th>
<th>Tipo</th>
<th>Servicios</th>
<th></th>
</tr>
</thead>
<tbody>
{#each $propiedades as propiedad}
<RowPropiedad id={propiedad.id} ubicacion={propiedad.ubicacion} letra={propiedad.letra} piso={propiedad.piso} tipo={propiedad.tipo} canthabitaciones={propiedad.canthabitaciones} servicios={propiedad.servicios} btnbaja={"Alta"}/>
{/each}
</tbody>
</table>