24 lines
621 B
Plaintext
24 lines
621 B
Plaintext
@page "/admin/inquiries"
|
|
@attribute [Authorize]
|
|
@using TaxBaik.Domain.Interfaces
|
|
@inject IInquiryRepository InquiryRepository
|
|
|
|
<PageTitle>문의 관리</PageTitle>
|
|
|
|
<MudText Typo="Typo.h5" Class="mb-4">💬 문의 관리</MudText>
|
|
|
|
<MudTabs>
|
|
<MudTabPanel Text="전체">
|
|
<InquiryTable Status="" />
|
|
</MudTabPanel>
|
|
<MudTabPanel Text="신규">
|
|
<InquiryTable Status="new" />
|
|
</MudTabPanel>
|
|
<MudTabPanel Text="연락함">
|
|
<InquiryTable Status="contacted" />
|
|
</MudTabPanel>
|
|
<MudTabPanel Text="완료">
|
|
<InquiryTable Status="completed" />
|
|
</MudTabPanel>
|
|
</MudTabs>
|