Browse Source

Update

master
fanwensheng 3 years ago
parent
commit
335276786b
  1. 5
      04.系统编码/App/Controllers/ConfigManagementController.cs

5
04.系统编码/App/Controllers/ConfigManagementController.cs

@ -22,9 +22,10 @@ namespace Pingchuan.BeijingSafeguard.App.Controllers
} }
[HttpPost] [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);
} }
} }
} }
Loading…
Cancel
Save