| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- @page "/users"
- @attribute [Authorize]
- <Table TItem="UserDto" Items="@Items" HeaderStyle="TableHeaderStyle.Light" IsBordered="true" IsMultipleSelect="true"
- ClickToSelect="true" ShowToolbar="true" OnQueryAsync="@OnQueryAsync" OnAddAsync="@OnAddAsync"
- OnSaveAsync="@OnSaveAsync" OnDeleteAsync="@OnDeleteAsync" ShowExtendButtons="true">
- <TableColumns>
- <TableColumn @bind-Field="@context.Id" Width="180" />
- <TableColumn @bind-Field="@context.UserName" Width="180" />
- <TableColumn @bind-Field="@context.Name" />
- <TableColumn @bind-Field="@context.Email" />
- </TableColumns>
- <EditTemplate>
- <div class="row g-3">
- <div class="col-12 col-sm-6">
- <BootstrapInput @bind-Value="@context.UserName" placeholder="不可为空,50字以内" maxlength="50">
- </BootstrapInput>
- </div>
- <div class="col-12 col-sm-6">
- <BootstrapInput @bind-Value="@context.Name" placeholder="不可为空,50字以内" maxlength="50">
- </BootstrapInput>
- </div>
- <div class="col-12 col-sm-6">
- <BootstrapInput @bind-Value="@context.Email" placeholder="不可为空,50字以内" maxlength="50">
- </BootstrapInput>
- </div>
- <div class="col-12 col-sm-6">
- <BootstrapInput @bind-Value="@context.Password" placeholder="不可为空,50字以内" maxlength="50">
- </BootstrapInput>
- </div>
- <div class="col-12 col-sm-6">
- <DateTimePicker @bind-Value="@context.CreationTime">
- </DateTimePicker>
- </div>
- <div class="col-12 col-sm-6">
- <MultiSelect TValue="string" Items="@RoleItems" @bind-Value="@context.RoleNames"></MultiSelect>
- </div>
- </div>
- </EditTemplate>
- </Table>
|