@Html.ToolButton("btnQuery", "icon-search", "查询", true)
@Html.Action("ToolBar", "Control", ViewBag.ToolBar as ToolBar)
产品大类:@Html.DropDownList("slt_productbigtype", ViewBag.bplist as IEnumerable, new { style = "width:150px" })
产品小类:@Html.DropDownList("slt_productsmalltype", ViewBag.splist as IEnumerable, new { style = "width:165px" })
支付类型: @Html.DropDownList("slt_paytype", new List() {
new SelectListItem(){ Text="所有",Value=""},
new SelectListItem(){ Text="支付宝",Value="1"},
new SelectListItem(){ Text="财付通",Value="2"},
new SelectListItem(){ Text="银行转账",Value="3"},
new SelectListItem(){ Text="网银支付",Value="4"},
new SelectListItem(){ Text="微信支付",Value="5"},
new SelectListItem(){ Text="支付宝银联",Value="6"},
new SelectListItem(){ Text="银联",Value="7"},
new SelectListItem(){ Text="公司赠送",Value="10"}
}, new { style = "width:80px" })