- 在
AppClient
中设置UIConfig
的TagColor
public static class AppClient
{
public static void AddXXXRazor(this IServiceCollection services)
{
// 设置获取颜色的委托
UIConfig.TagColor = GetTagColor;
}
private static string GetTagColor(string text)
{
if (text.Contains("接单")) return "processing";
else if (text == "待确认") return "volcano";
return "";
}
}