@{ ViewBag.Title = "权限列表"; Layout = "~/Views/Shared/_Layout.cshtml"; } @using MES.Production.Service; @using Central.Control.Domain; @using Ant.Service.Common; @using Ant.Service.Common.Enums; @model List
@using (Ajax.BeginForm("Index", null, new AjaxOptions() { }, new { @id = "form1", @class = "form-horizontal", @method = "get" })) {
@{ if (ViewBag.Module != null) { SYS_MODULE module = ViewBag.Module as SYS_MODULE; if (module != null) {
@(module.NAME) 权限
@Html.Hidden("moduleId", module.ID) @Html.Hidden("moduleType", module.MODULETYPE) } } else {
权限管理
} }
@Html.TextBox("Search", null, new { @class = "input-sm form-control", @placeholder = "请输入查询关键词" })
}
@section scripts{ }