parent
c24fc1c457
commit
9ff44216e4
@ -1,22 +0,0 @@
|
|||||||
@model Infrastructure.Models.NotifyModel
|
|
||||||
<table class="table">
|
|
||||||
<tr>
|
|
||||||
<td>设备名称:</td>
|
|
||||||
<td>@Model.Name</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>设备编号:</td>
|
|
||||||
<td>@Model.Number</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>设备数据:</td>
|
|
||||||
<td>
|
|
||||||
<table>
|
|
||||||
@foreach (var item in Model.Data)
|
|
||||||
{
|
|
||||||
<tr><td>@item.Name</td><td>@item.Value</td><td>@item.Unit</td><td>@item.Description</td></tr>
|
|
||||||
}
|
|
||||||
</table>
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
@ -0,0 +1,22 @@
|
|||||||
|
@model Infrastructure.Models.NotifyModel
|
||||||
|
<table class="table">
|
||||||
|
<tr>
|
||||||
|
<td>设备名称:</td>
|
||||||
|
<td>@Model.Name</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>设备编号:</td>
|
||||||
|
<td>@Model.Number</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>设备数据:</td>
|
||||||
|
<td>
|
||||||
|
<table>
|
||||||
|
@foreach (var item in Model.Data)
|
||||||
|
{
|
||||||
|
<tr><td>@item.Name</td><td>@item.Value</td><td>@item.Unit</td><td>@item.Description</td></tr>
|
||||||
|
}
|
||||||
|
</table>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
Loading…
Reference in new issue