@using Core.Web.WebHelper
@using Core.Web.Controllers
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@*@{
if (ViewBag.Eid == 3002 || ViewBag.Eid == 68882 || ViewBag.Eid == 60044 || ViewBag.Eid == 1026)
{
}
}*@
@Html.Action("ToolBar", "Home",
new
{
area = "",
rightcode = (ViewBag.rightCode as string),
otherToolBars = new ToolBar[]
{
// new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Add, "添加", "layui-btn-normal","",true) ,
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Edit, "编辑", " " ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Check, "审核", " " ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Delete, "删除", " " ,"",true)
}
}
)