//用户领取优惠券 public ActionResult GetArrive() { int storeID = DataConvert.CLng(Request.QueryString["StoreID"], -100); PageSetting setting = avBll.U_SelForGet(CPage, PSize, mu.UserID, storeID); if (function.isAjax()) { return(PartialView("GetArrive_List", setting)); } return(View(setting)); }
//用户领取优惠卷 public ActionResult GetArrive() { DataTable dt = avBll.U_SelForGet(mu.UserID); return(View(dt)); }