2023-12-05 10:37:40 -03:00
|
|
|
<script>
|
|
|
|
import PageTitle from "$/components/PageTitle.svelte";
|
2023-12-09 21:14:21 -03:00
|
|
|
import CantidadParaderos from "./CantidadParaderos.svelte";
|
|
|
|
import CantidadLineas from "./CantidadLineas.svelte";
|
|
|
|
import CantidadParaderosComuna from "./CantidadParaderosComuna.svelte";
|
|
|
|
import CantidadBusesRecorrido from "./CantidadBusesRecorrido.svelte";
|
|
|
|
import CantidadBusesLinea from "./CantidadBusesLinea.svelte";
|
|
|
|
|
|
|
|
let loading1 = false
|
|
|
|
let loading2 = false
|
|
|
|
let loading3 = false
|
|
|
|
let loading4 = false
|
|
|
|
let loading5 = false
|
2023-12-05 10:37:40 -03:00
|
|
|
</script>
|
2023-12-09 21:14:21 -03:00
|
|
|
|
2024-02-07 14:57:13 -03:00
|
|
|
<PageTitle
|
|
|
|
loading={loading1 || loading2 || loading3 || loading4 || loading5 }
|
2024-03-17 02:56:44 -03:00
|
|
|
><strong>Resumen</strong> de datos</PageTitle>
|
2023-12-05 10:37:40 -03:00
|
|
|
|
2024-02-07 14:57:13 -03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xs-12 col-md-7">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<CantidadLineas on:loading={ev => loading1 = ev.detail} />
|
2023-12-09 21:14:21 -03:00
|
|
|
</div>
|
2024-02-07 14:57:13 -03:00
|
|
|
<div class="col">
|
|
|
|
<CantidadParaderos on:loading={ev => loading2 = ev.detail} />
|
2023-12-05 10:37:40 -03:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-12-09 21:14:21 -03:00
|
|
|
|
2024-02-07 14:57:13 -03:00
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<CantidadParaderosComuna on:loading={ev => loading3 = ev.detail} />
|
|
|
|
</div>
|
|
|
|
<div class="col">
|
|
|
|
<CantidadBusesRecorrido on:loading={ev => loading4 = ev.detail} />
|
|
|
|
</div>
|
2024-02-04 17:20:47 -03:00
|
|
|
</div>
|
2023-12-09 21:14:21 -03:00
|
|
|
</div>
|
2024-02-07 14:57:13 -03:00
|
|
|
|
2024-04-12 23:36:56 -04:00
|
|
|
<!-- <div class="col-xs-12 col-md-5">
|
2024-02-07 14:57:13 -03:00
|
|
|
<CantidadBusesLinea on:loading={ev => loading5 = ev.detail} />
|
2024-04-12 23:36:56 -04:00
|
|
|
</div>-->
|
2024-02-07 14:57:13 -03:00
|
|
|
</div>
|