iotgateway/WalkingTec.Mvvm/WalkingTec.Mvvm.Mvc/GeneratorFiles/Spa/Blazor/Create.txt

39 lines
1013 B
Plaintext
Raw Normal View History

2021-12-14 06:10:44 +00:00
@page "$pagepath$"
@using $vmnamespace$;
@inherits BasePage
<ValidateForm @ref="vform" Model="@Model" OnValidSubmit="@Submit">
<Row ItemsPerRow="ItemsPerRow.Two" RowType="RowType.Normal">
$formfields$
</Row>
<div class="modal-footer table-modal-footer">
<Button Color="Color.Primary" Icon="fa fa-save" Text="@WtmBlazor.Localizer["Sys.Close"]" OnClick="OnClose" />
<Button Color="Color.Primary" ButtonType="ButtonType.Submit" Icon="fa fa-save" Text="@WtmBlazor.Localizer["Sys.Create"]" IsAsync="true" />
</div>
</ValidateForm>
@code {
private $modelname$VM Model = new $modelname$VM();
private ValidateForm vform { get; set; }
$fieldinit$
protected override async Task OnInitializedAsync()
{
$init$
await base.OnInitializedAsync();
}
private async Task Submit(EditContext context)
{
await PostsForm(vform, "/api/$modelname$/add", (s) => "Sys.OprationSuccess");
}
public void OnClose()
{
CloseDialog();
}
}