[성현모] 테스트리스트 조회 기능 추가

This commit is contained in:
SHM
2025-09-17 15:12:10 +09:00
parent 89fe237e52
commit bdde95386f
8 changed files with 131 additions and 77 deletions

View File

@ -0,0 +1,29 @@
@using SystemX.Core.DB
@using Web.Tra.Services
@page "/testlist/{ProductNo}/{TestCode}/{StepVersion}"
@inject CPXV2LogService CPXV2LogService
<RadzenStack Style="height:80vh;">
<TraGrid TDataModel="VRFY_TestListFileRelease" DataList="@GetTestList.TestListFile"
HostColumnMerge="false">
</TraGrid>
</RadzenStack>
@code {
[Parameter]
public string ProductNo { get; set; }
[Parameter]
public string TestCode { get; set; }
[Parameter]
public string StepVersion { get; set; }
private TestList GetTestList = new TestList();
protected override async Task OnParametersSetAsync()
{
GetTestList = await CPXV2LogService?.GetTestList(ProductNo, TestCode, Convert.ToInt32(StepVersion));
}
}