mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
128464c681
* refactor(module: list): allow to setup each list item * fix: itemLayout type
43 lines
1.0 KiB
C#
43 lines
1.0 KiB
C#
@namespace AntDesign
|
|
@inherits AntDomComponentBase
|
|
|
|
<div class="@ClassMapper.Class" style="@Style">
|
|
|
|
@if (!string.IsNullOrWhiteSpace(Avatar) || AvatarTemplate != null)
|
|
{
|
|
<div class="ant-list-item-meta-avatar">
|
|
@if (!string.IsNullOrWhiteSpace(Avatar))
|
|
{
|
|
<Avatar Src="@Avatar"></Avatar>
|
|
}
|
|
else
|
|
{
|
|
@AvatarTemplate
|
|
}
|
|
</div>
|
|
}
|
|
|
|
<div class="ant-list-item-meta-content">
|
|
@if (!string.IsNullOrWhiteSpace(Title) || TitleTemplate != null)
|
|
{
|
|
<div>
|
|
<h4 class="ant-list-item-meta-title">
|
|
@if (!string.IsNullOrWhiteSpace(Title))
|
|
{
|
|
@Title
|
|
}
|
|
else
|
|
{
|
|
@TitleTemplate
|
|
}
|
|
</h4>
|
|
</div>
|
|
}
|
|
|
|
<div class="ant-list-item-meta-description">
|
|
@Description
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|