Api-PWA/DocuMed.PWA/Shared/ItemTemplates/MedicalHistoryTemplateItemT...

20 lines
761 B
Plaintext
Raw Normal View History

2023-10-10 17:02:38 +03:30
<MudCard @onclick="(async () => { await Clicked.InvokeAsync(MedicalHistoryTemplate); })" Elevation="2" class="rounded-lg">
<MudCardContent>
2023-10-20 19:40:23 +03:30
<p class="text-center font-extrabold mt-1 text-gray-600 text-lg">@MedicalHistoryTemplate.ChiefComplaint</p>
2023-10-10 17:02:38 +03:30
<MudPaper Elevation="0"
class="bg-[#FFDACF] text-center text-[#D03405] rounded-full py-0.5 mt-3 mr-auto text-xs font-iranyekan">
2023-10-28 23:57:28 +03:30
<p>بخش @MedicalHistoryTemplate.SectionName</p>
2023-10-10 17:02:38 +03:30
</MudPaper>
</MudCardContent>
</MudCard>
@code {
[Parameter]
2023-10-20 19:40:23 +03:30
public MedicalHistoryTemplateSDto MedicalHistoryTemplate { get; set; } = new();
2023-10-10 17:02:38 +03:30
[Parameter]
2023-10-20 19:40:23 +03:30
public EventCallback<MedicalHistoryTemplateSDto> Clicked { get; set; }
2023-10-10 17:02:38 +03:30
}