Primera versión
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
@page "/HerramientaURBANSimulaciones"
|
||||
@using HerramientaCASA.Model
|
||||
@using Microsoft.AspNetCore.WebUtilities
|
||||
@using System.Text.Json
|
||||
@using System.Text
|
||||
@using bdHerramientaCACOA.db
|
||||
@using Newtonsoft.Json
|
||||
@rendermode InteractiveServer
|
||||
@inject NavigationManager Navigation
|
||||
@inject UserState userState
|
||||
|
||||
|
||||
|
||||
<div class="pt-3">
|
||||
<div class="CajaTab p-2">
|
||||
<div>
|
||||
<div class="container-fluid align-items-center">
|
||||
<div class="mb-5">
|
||||
<button @onclick="@(() => irNuevaSimulacion())" class="btnBlue ms-auto"><i class="fas fa-plus pe-1"></i>Crear Nueva simulación URBAN</button>
|
||||
</div>
|
||||
<b>Simulaciones URBAN guardadas</b>
|
||||
</div>
|
||||
<div>
|
||||
<HerramientaCASA.Components.Pages.Simulaciones.SimulacionesTabs TipoSimulacion="URBAND"></HerramientaCASA.Components.Pages.Simulaciones.SimulacionesTabs>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
}
|
||||
|
||||
private void irNuevaSimulacion()
|
||||
{
|
||||
Navigation.NavigateTo("/HerramientaURBAN", true);
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user