@using ShwasherSys.Authorization.Permissions @using ShwasherSys.Models.Layout @using ShwasherSys.Models.Modal @{ /**/ ViewBag.ActiveMenu = PermissionNames.PagesFinshedStoreInfoFinshedEnterStoreMg; //The menu item will be active for this page. ViewBag.Title = "成品入库信息"; List applyStatus = ViewBag.FinshedApplyStatus; var searchForm = new SearchFormViewModal(new List() { new SearchItem("productionOrderNo","排产单号"), new SearchItem("productName","产品名称"), new SearchItem("model","规格"), new SearchItem("material","材质"), new SearchItem("rigidity","硬度"), new SearchItem("surfaceColor","表色"), new SearchItem("productNo","成品编码").SetSearchIcon("query_Product_modal"), new SearchItem("applyStatus","申请状态",FiledType.I,ExpType.Equal ) .SetSearchItem(applyStatus), }, false); }
@Html.DropDownList("hide-ApplyStatus", applyStatus)
@Html.Action("ToolMenu", "Layout", new { pageName = ViewBag.ActiveMenu, searchForm }) @**@ @**@
@section modal{
@Html.Partial("Modals/Query/_Product", "KeyWords-7") } @section scripts { }