You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2 KiB
Plaintext

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

@{
ViewData["Title"] = "查看菜单信息";
}
<div class="box1" id="formContent" whiteBg="true">
<table class="tableStyle" formMode="view">
<tr>
<th colspan="2">菜单信息</th>
</tr>
<tr>
<td width="150">菜单ID</td>
<td>@ViewData["menuId"]</td>
</tr>
<tr>
<td width="150">菜单名称:</td>
<td>@ViewData["name"]</td>
</tr>
<tr>
<td>菜单描述:</td>
<td>@ViewData["description"]</td>
</tr>
<tr>
<td width="150">菜单路径:</td>
<td>@ViewData["url"]</td>
</tr>
<tr>
<td>父级菜单ID</td>
<td>@ViewData["parentId"]</td>
</tr>
<tr>
<td>启用/禁用:</td>
<td>
@(ViewData["enabled"] != null && ViewData["enabled"].Equals("Y") ? "启用" : "禁用")
</td>
</tr>
<tr>
<td>菜单图标路径:</td>
<td>@ViewData["iconUrl"]</td>
</tr>
<tr>
<td>菜单展开图标路径:</td>
<td>@ViewData["iconOpenUrl"]</td>
</tr>
<tr>
<td>菜单闭合图标路径:</td>
<td>@ViewData["iconCloseUrl"]</td>
</tr>
<tr>
<td>菜单样式:</td>
<td>@ViewData["iconSkin"]</td>
</tr>
<tr>
<td>菜单排序:</td>
<td>@ViewData["sortNum"]</td>
</tr>
</table>
</div>