iotgateway/IoTGateway/Areas/BasicData/Views/Device/Attribute.cshtml

15 lines
397 B
Plaintext
Raw Normal View History

2022-03-24 13:38:11 +00:00
@model IoTGateway.ViewModel.BasicData.DeviceVMs.AttributeVM
@inject IStringLocalizer<Program> Localizer;
<wt:form vm="@Model" >
<wt:row items-per-row="ItemsPerRowEnum.One">
<wt:quote>@Model.设备名称</wt:quote>
</wt:row>
<wt:row align="AlignEnum.Right">
<wt:submitbutton text="获取属性" />
<wt:closebutton text="取消" />
</wt:row>
</wt:form>