iotgateway/IoTGateway/Areas/Rpc/Views/RpcLog/Index.cshtml

15 lines
772 B
Plaintext
Raw Permalink Normal View History

2022-04-13 09:01:24 +00:00
@model IoTGateway.ViewModel.Rpc.RpcLogVMs.RpcLogListVM
@inject IStringLocalizer<Program> Localizer;
<wt:searchpanel vm="@Model" reset-btn="true">
<wt:row items-per-row="ItemsPerRowEnum.Three">
<wt:combobox field="Searcher.RpcSide" empty-text="@Localizer["Sys.All"]" />
<wt:datetime field="Searcher.StartTime" range="true" />
<wt:combobox field="Searcher.DeviceId" items="Searcher.AllDevices" empty-text="@Localizer["Sys.All"]" />
<wt:textbox field="Searcher.Method" />
<wt:textbox field="Searcher.Params" />
<wt:combobox field="Searcher.IsSuccess" empty-text="@Localizer["Sys.All"]" />
</wt:row>
</wt:searchpanel>
2022-09-14 12:47:26 +00:00
<wt:grid vm="@Model" url="/Rpc/RpcLog/Search" hidden-checkbox="false" hidden-grid-index="true" />