public ActionResult GetEventNode() { string code = Request.Form["code"].ToString(); var list = new AcceptEventBLL().GetEventNode(code); return Json(new { PRInfo = list }, "appliction/json", JsonRequestBehavior.AllowGet); }
//获取事件详细信息 public ActionResult GetAlarmEventInfo() { //string EventCode = Request.Form["EventCode"].ToString(); // int AcceptOrder = int.Parse(Request.Form["AcceptOrder"]); string EventCode = "201209010725180009"; var list = new AcceptEventBLL().GetAlarmEventInfoByCode(EventCode); return Json(new { PLInfo = list }, "appliction/json", JsonRequestBehavior.AllowGet); }