金豪看板
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.

90 lines
1.9 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
8 months ago
2 years ago
2 years ago
  1. using Aspose.Cells;
  2. using NFine.Application.SRM;
  3. using NFine.Code;
  4. using System;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.IO;
  8. using System.Web;
  9. using System.Web.Mvc;
  10. namespace NFine.Web.Areas.SRM.Controllers
  11. {
  12. public class WatchPanelController : ControllerBase
  13. {
  14. private WatchPanelApp App = new WatchPanelApp();
  15. [HttpGet]
  16. [HandlerAjaxOnly]
  17. public ActionResult GetList1(string XX)
  18. {
  19. DataTable dt = App.GetList1();;
  20. return Content(dt.ToJson());
  21. }
  22. [HttpGet]
  23. [HandlerAjaxOnly]
  24. public ActionResult GetGridJson2(string ttype)
  25. {
  26. DataTable dt = App.GetList2(ttype);;
  27. return Content(dt.ToJson());
  28. }
  29. [HttpGet]
  30. [HandlerAjaxOnly]
  31. public ActionResult GetGridJson3(string XX)
  32. {
  33. DataTable dt = App.GetList3();;
  34. return Content(dt.ToJson());
  35. }
  36. [HttpGet]
  37. [HandlerAjaxOnly]
  38. public ActionResult GetGridJson4(string XX)
  39. {
  40. DataTable dt = App.GetList4();;
  41. return Content(dt.ToJson());
  42. }
  43. [HttpGet]
  44. [HandlerAjaxOnly]
  45. public ActionResult GetGridJson5(string XX)
  46. {
  47. DataTable dt = App.GetList5();;
  48. return Content(dt.ToJson());
  49. }
  50. [HttpGet]
  51. [HandlerAjaxOnly]
  52. public ActionResult GetGridJson6(string XX)
  53. {
  54. DataTable dt = App.GetList6(); ;
  55. return Content(dt.ToJson());
  56. }
  57. [HttpGet]
  58. [HandlerAjaxOnly]
  59. public ActionResult GetGridJson7(string XX)
  60. {
  61. DataTable dt = App.GetList7(); ;
  62. return Content(dt.ToJson());
  63. }
  64. public virtual ActionResult PanelWip()
  65. {
  66. return View();
  67. }
  68. public virtual ActionResult PanelWip2()
  69. {
  70. return View();
  71. }
  72. }
  73. }