问题详情
70 | 清风大侠
如何设置项目状态列模板的Tag颜色
  • AppClient中设置UIConfigTagColor
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 "";
    }
}
回复列表

暂无数据