@using System.Data @using ZoomLa.BLL.Shop @model ZoomLa.BLL.Shop.F_Order_Sale @{ B_Store_Info storeBll = new B_Store_Info(); DataTable storeDT = storeBll.SelPage(1,int.MaxValue,new F_StoreInfo() { }).dt; { DataRow storeDR = storeDT.NewRow(); storeDR["Title"] = "自营商城"; storeDR["GeneralID"] = "0"; storeDT.Rows.InsertAt(storeDR, 0); } { DataRow storeDR = storeDT.NewRow(); storeDR["Title"] = @L.全部店铺; storeDR["GeneralID"] = "-100"; storeDT.Rows.InsertAt(storeDR, 0); } }
@**@
@L.起始时间 @L.结束时间 @L.店铺 @Html.DropDownList("storeIDS", MVCHelper.ToSelectList(storeDT, "Title", "GeneralID", Model.storeIds),new {@class="form-control" })