You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
456 B
25 lines
456 B
@model List<FBeeDevice>
|
|
<table>
|
|
<tr>
|
|
<th>Sn</th>
|
|
<th>地址</th>
|
|
<th>开关</th>
|
|
<th>RawValue</th>
|
|
</tr>
|
|
@foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td>@item.Sn</td>
|
|
<td>@item.Address</td>
|
|
<td>@item.Power</td>
|
|
<td>@item.RawValue</td>
|
|
</tr>
|
|
}
|
|
</table>
|
|
@section styles{
|
|
<style>
|
|
td {
|
|
padding: 5px 1em;
|
|
}
|
|
</style>
|
|
} |