@using WePlatform.Configuration
@using WePlatform.Authorization
@using WePlatform.Views.Shared.Modals
@{
ViewBag.Title = "应急预案管理";
string activeMenu = PermissionNames.PagesResourceMgGuideMgPlanMg; //The menu item will be active for this page.
ViewBag.ActiveMenu = activeMenu;
}
@section css{
}
查询
@*@Html.Partial("Table/_Table", table)*@
@section modal{
@{
var modal = new ModalViewModel("预案", new ModalBodyViewModel(new List()
{
new InputHide("id"),
new InputHide("parentNo"),
new InputHide("path"),
new Input("parentName", "父预案").SetDisabled(),
new Input("name", "名称"),
new InputTextarea("description", "描述").SetNotRequired(),
}));
var modalContent = new ModalViewModel("预案内容", new ModalBodyViewModel(new List()
{
new InputHide("id"),
new InputHide("planNo"),
new Input("planName", "预案名称").SetDisabled(),
new Input("keyWord", "关键字").SetHelp("多个关键字以“,”分隔!"),
//new Input("version", "预案版本"),
new InputKindeditor("planContent", "内容"),
}, "content-form"), "content-modal");
}
@Html.Partial("Modals/_Modal", modal)
@Html.Partial("Modals/_Modal", modalContent)
}
@section scripts
{
}
@*@Html.DropDownList("hid-type", type)*@