金豪看板
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

91 lines
1.9 KiB

using Aspose.Cells;
using NFine.Application.SRM;
using NFine.Code;
using System;
using System.Data;
using System.Drawing;
using System.IO;
using System.Web;
using System.Web.Mvc;
namespace NFine.Web.Areas.SRM.Controllers
{
public class WatchPanelController : ControllerBase
{
private WatchPanelApp App = new WatchPanelApp();
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetList1(string XX)
{
DataTable dt = App.GetList1();;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson2(string ttype)
{
DataTable dt = App.GetList2(ttype);;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson3(string XX)
{
DataTable dt = App.GetList3();;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson4(string XX)
{
DataTable dt = App.GetList4();;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson5(string XX)
{
DataTable dt = App.GetList5();;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson6(string XX)
{
DataTable dt = App.GetList6(); ;
return Content(dt.ToJson());
}
[HttpGet]
[HandlerAjaxOnly]
public ActionResult GetGridJson7(string XX)
{
DataTable dt = App.GetList7(); ;
return Content(dt.ToJson());
}
public virtual ActionResult PanelWip()
{
return View();
}
public virtual ActionResult PanelWip2()
{
return View();
}
}
}