Beispiel #1
0
        /// <summary>
        /// 复投记录
        /// </summary>
        /// <returns></returns>
        public ActionResult EpRepeatLogs(int pageIndex = 1)
        {
            Page <LogInfo> page = new Page <LogInfo>();

            int pageSize = 15;
            int userId   = _ServiceContext.SND_CurrentUser.UserId;

            page = _logBll.GetEpRepeatLogs(userId, pageIndex, pageSize);//复投记录

            if (Request.IsAjaxRequest())
            {
                return(PartialView("_EpRepeatLogs", page));
            }

            return(View(page));
        }