|
|
|
@ -1,14 +1,11 @@ |
|
|
|
using System; |
|
|
|
using System.Collections.Generic; |
|
|
|
using System.ComponentModel.DataAnnotations; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using Blazorise; |
|
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
|
using Volo.Abp.AspNetCore.Components.Web.Extensibility.EntityActions; |
|
|
|
using Volo.Abp.AspNetCore.Components.Web.Extensibility.TableColumns; |
|
|
|
using Volo.Abp.AspNetCore.Components.Web.Theming.PageToolbars; |
|
|
|
using Volo.Abp.BlazoriseUI; |
|
|
|
using Volo.Abp.FeatureManagement; |
|
|
|
using Volo.Abp.FeatureManagement.Blazor.Components; |
|
|
|
using Volo.Abp.ObjectExtending; |
|
|
|
using Volo.Abp.TenantManagement.Localization; |
|
|
|
@ -24,6 +21,8 @@ public partial class TenantManagement |
|
|
|
|
|
|
|
protected FeatureManagementModal FeatureManagementModal; |
|
|
|
|
|
|
|
protected bool IsShowPassword { get; set; } |
|
|
|
|
|
|
|
protected PageToolbar Toolbar { get; } = new(); |
|
|
|
|
|
|
|
protected List<TableColumn> TenantManagementTableColumns => TableColumns.Get<TenantManagement>(); |
|
|
|
@ -127,4 +126,9 @@ public partial class TenantManagement |
|
|
|
|
|
|
|
return base.SetTableColumnsAsync(); |
|
|
|
} |
|
|
|
|
|
|
|
protected virtual void ShowHidePassword(bool isShowPassword) |
|
|
|
{ |
|
|
|
IsShowPassword = !isShowPassword; |
|
|
|
} |
|
|
|
} |
|
|
|
|