@using CRM.Core.Model.Entity
@using Core.Web.WebHelper
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@Html.Action("ToolBar", "Home",
new
{
area = "",
rightcode = (ViewBag.rightCode as string),
otherToolBars = new ToolBar[]
{
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Add, "新增", " " ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Edit, "修改", " " ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Export, "导出", "" ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Delete, "删除", "layui-btn-danger" ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Other1, "编辑附件", "layui-btn-danger" ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Other2, "查看附件", "layui-btn-danger" ,"",true),
new Core.Web.WebHelper.ToolBar(ToolBarConfig.CONST_Other3, "查看参与人", "layui-btn-danger" ,"",true),
}
})