mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 01:11:52 +08:00
cbc5e823f0
* fix: card title template * fix: template:badge,collapse * fix: comment refactor template * fix: ribbonTests * feat: descriptions refactor template * feat: empty refactor template * feat: list refactor template * feat: menu refactor template * feat: confirm add question icon * feat: pageHeader and statistic refactor template * feat: popconfirm refactor template * feat: popver refactor template * feat: result refactor template * feat: step refactor template * feat: switch refactor template * feat: table refactor template * feat: transfer refactor template * feat: optimized code * fix: pageheader * refactor(module: empty): remove empty image constant images Co-authored-by: ElderJames <shunjiey@hotmail.com>
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.AspNetCore.Components;
|
|
using OneOf;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public abstract class StatisticComponentBase<T> : AntDomComponentBase
|
|
{
|
|
/// <summary>
|
|
/// 设置数值的前缀
|
|
/// </summary>
|
|
[Parameter] public string Prefix { get; set; }
|
|
|
|
[Parameter] public RenderFragment PrefixTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置数值的后缀
|
|
/// </summary>
|
|
[Parameter] public string Suffix { get; set; }
|
|
|
|
[Parameter] public RenderFragment SuffixTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数值的标题
|
|
/// </summary>
|
|
[Parameter] public string Title { get; set; }
|
|
|
|
[Parameter] public RenderFragment TitleTemplate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 数值内容
|
|
/// </summary>
|
|
[Parameter] public T Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// 设置数值的样式
|
|
/// </summary>
|
|
[Parameter] public string ValueStyle { get; set; }
|
|
|
|
[Parameter] public RenderFragment ChildContent { get; set; }
|
|
}
|
|
}
|