@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesCustomerInfoCustomers; //The menu item will be active for this page. ViewBag.Title = "客户基础信息维护"; List saleTypeItems = ViewBag.SaleType; var searchForm = new SearchFormViewModal(new List() { new SearchItem("id", "客户编号"), new SearchItem("customerName", "客户名称"), new SearchItem("saleType", "销售类型",FiledType.Inull,ExpType.Equal).SetSearchItem(saleTypeItems), }); }
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm })
@section modal{
} @section scripts { }