- 注册时间
- 2013-8-12
- 最后登录
- 2015-8-13
- 阅读权限
- 10
- 积分
- 237
- 精华
- 0
- 帖子
- 70
|
lvdiquan 发表于 2013-8-15 11:05
/*File created:2013年 8月14日*/
var mingXi = mingXi || function () { }
mini.parse();
后台方法
public ActionResult MingXi(int depID, string searchKey, int pageSize = 10, int pageIndex = 0, bool isJson = false)
{
ViewBag.depID = depID;
if (isJson)
{
int total = 0;
IList<Employ> list = new List<Employ>();
list = _employBll.GetDepEmploy(depID, searchKey, pageSize, pageIndex, out total);
return Json(new { data = list, total = total });
}
return View();
} |
|