|
|
@ -22,9 +22,10 @@ namespace Pingchuan.BeijingSafeguard.App.Controllers |
|
|
|
} |
|
|
|
|
|
|
|
[HttpPost] |
|
|
|
public List<Config> Query(int pageIndex, int pageSize) |
|
|
|
public JsonResult Query(int pageIndex, int pageSize) |
|
|
|
{ |
|
|
|
return ConfigBLL.Query(pageIndex, pageSize); |
|
|
|
List<Config> configs = ConfigBLL.Query(pageIndex, pageSize); |
|
|
|
return Json(configs); |
|
|
|
} |
|
|
|
} |
|
|
|
} |