iotgateway/IoTGateway/Areas/Rpc/Views/RpcLog/BatchEdit.cshtml
2022-04-13 17:01:24 +08:00

15 lines
513 B
Plaintext

@model IoTGateway.ViewModel.Rpc.RpcLogVMs.RpcLogBatchVM
@inject IStringLocalizer<Program> Localizer;
<wt:form vm="@Model">
<div style="margin-bottom:10px">@Localizer["Sys.BatchEditConfirm"] </div>
<wt:row items-per-row="ItemsPerRowEnum.Two">
</wt:row>
<wt:hidden field="Ids" />
<wt:grid vm="ListVM" use-local-data="true" height="300" hidden-checkbox="true" hidden-panel="true"/>
<wt:row align="AlignEnum.Right">
<wt:submitbutton />
<wt:closebutton />
</wt:row>
</wt:form>