mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-06 14:07:40 +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>
26 lines
927 B
C#
26 lines
927 B
C#
@namespace AntDesign
|
|
@inherits StatisticComponentBase<DateTime>
|
|
@using AntDesign.Core.Helpers;
|
|
|
|
<div class="ant-statistic" style="@Style" @ref="Ref" id="@Id">
|
|
<div class="ant-statistic-title">
|
|
@if (TitleTemplate != null)@TitleTemplate else @Title
|
|
</div>
|
|
<div class="ant-statistic-content" style="@ValueStyle">
|
|
@if (PrefixTemplate != null || Prefix != null)
|
|
{
|
|
<span class="ant-statistic-content-prefix">
|
|
@if (PrefixTemplate != null)@PrefixTemplate else @Prefix
|
|
</span>
|
|
}
|
|
<span class="ant-statistic-content-value">
|
|
@(Formatter<TimeSpan>.Format(_countDown, Format))
|
|
</span>
|
|
@if (SuffixTemplate != null || Suffix != null)
|
|
{
|
|
<span class="ant-statistic-content-suffix">
|
|
@if (SuffixTemplate != null)@SuffixTemplate else @Suffix
|
|
</span>
|
|
}
|
|
</div>
|
|
</div> |