[성현모] CPMeta 최근데이터 조회 기능 추가

This commit is contained in:
SHM
2026-02-13 08:50:33 +09:00
parent 3626030124
commit 3f94a7b2b2
10 changed files with 107 additions and 3 deletions

View File

@ -46,7 +46,11 @@
</div> *@
<OperationGrid TDataModel="tWbms" DataList="@response.Wbms">
</OperationGrid>
<br />
<RadzenLabel Style="width: 200px; color:darkorange" Text="Latest Data"></RadzenLabel>
<OperationGrid TDataModel="tWbms" DataList="@latest.Wbms">
</OperationGrid>
@code {
@ -56,10 +60,18 @@
private string SearchProductMacAddress = string.Empty;
Response_GetWbmsMeta response = new Response_GetWbmsMeta();
Response_GetWbmsMeta latest = new Response_GetWbmsMeta();
protected override async Task OnInitializedAsync()
{
ServerAddress = _cpMetaService.ApiHost;
var apiConfig = _configService.GetConfig().Api.Find(x => x.Id == 1);
if (apiConfig is not null)
{
latest = await _cpMetaService.GetWbmsLatest(ServerAddress, apiConfig.LastCount);
}
}
private async Task SearchByProductID()