refactor: 更新登录日志结果改用 Tag 组件

This commit is contained in:
Argo-Tianyi 2022-01-16 12:21:10 +08:00
parent 95bec59886
commit 23e43ff248
3 changed files with 3 additions and 29 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="BootstrapBlazor" Version="6.2.7-beta08" />
<PackageReference Include="BootstrapBlazor" Version="6.2.7-beta09" />
<PackageReference Include="Longbow.Security.Cryptography" Version="5.2.0" />
<PackageReference Include="Microsoft.Data.Sqlite" Version="6.0.1" />
<PackageReference Include="PetaPoco.Extensions" Version="5.2.0" />

View File

@ -1,26 +0,0 @@
using BootstrapAdmin.DataAccess.PetaPoco.Services;
using Microsoft.Extensions.Primitives;
namespace BootstrapAdmin.Caching;
/// <summary>
///
/// </summary>
public static class TokenManager
{
/// <summary>
///
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public static IChangeToken GetOrAdd(string key)
{
IChangeToken? token = null;
if (key.StartsWith($"{nameof(NavigationService)}-"))
{
// 菜单需要更新
//token = new CompositeChangeToken();
}
return token;
}
}

View File

@ -13,11 +13,11 @@
<Template Context="v">
@if (v.Value == "登录成功")
{
<Badge Color="Color.Success">@v.Value</Badge>
<Tag Color="Color.Success">@v.Value</Tag>
}
else
{
<Badge Color="Color.Danger">@v.Value</Badge>
<Tag Color="Color.Danger">@v.Value</Tag>
}
</Template>
</TableColumn>