mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +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>
37 lines
1005 B
C#
37 lines
1005 B
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<div class="@ClassMapper.Class" @ref="@Ref" style="@Style" id="@Id">
|
|
<div class="@(PrefixCls)-image" style="@ImageStyle">
|
|
@if (ImageTemplate != null)
|
|
{
|
|
@ImageTemplate
|
|
}
|
|
else if (string.IsNullOrEmpty(Image) == false)
|
|
{
|
|
string alt = Description.TryPickT0(out string des, out _) ? des : LocaleProvider.CurrentLocale.Empty.Description;
|
|
|
|
<img alt="@alt" src="@Image" />
|
|
}
|
|
else if (Simple)
|
|
{
|
|
<EmptySimpleImg />
|
|
}
|
|
else
|
|
{
|
|
<EmptyDefaultImg />
|
|
}
|
|
</div>
|
|
|
|
@if (DescriptionTemplate != null)
|
|
{
|
|
<p class="@(PrefixCls)-description">@DescriptionTemplate</p>
|
|
}
|
|
else if (Description.IsT1 == false || Description.AsT1 == true)
|
|
{
|
|
<p class="@(PrefixCls)-description">@Description.AsT0</p>
|
|
}
|
|
<div class="@(PrefixCls)-footer">
|
|
@ChildContent
|
|
</div>
|
|
</div> |