College.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. var url = CMS_SystemConfig.VirtualDirectoryPath + "/College/Edit";
  2. var mnu = "";
  3. //加载
  4. $(function () {
  5. mnu = $.SystemGeneral.getUrlParam("MNU");
  6. })
  7. //刷新
  8. function reload() {
  9. $("#dgCollegeList").cmsXDataTable("load", $.getDataGridParams("dgCollegeList"));
  10. }
  11. //获取选中的数据
  12. function validChoose() {
  13. var d = [];
  14. $.each($("#dgCollegeList").cmsXDataTable("getSelections"), function (index) {
  15. d.push(this.CollegeID);
  16. });
  17. return d;
  18. }
  19. //新增
  20. function College_Add() {
  21. var d = validChoose();
  22. if (d.length > 0) {
  23. $.popupTopWindow(EMIS_CollegeLabel + '复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/College/CopyAdd?collegeID=' + d[0] + '&MNU=' + mnu, 600, 350, null, null);
  24. } else {
  25. var redirectTo = url + "?MNU=" + mnu;
  26. $.popupTopWindow(EMIS_CollegeLabel + '新增', redirectTo, 600, 350, null, null);
  27. }
  28. }
  29. //修改按钮
  30. function College_Update() {
  31. var d = validChoose();
  32. if (d == "") {
  33. $.messager.alert("系统信息", "请选择您要修改的信息。");
  34. return;
  35. }
  36. if (d.length > 1) {
  37. $.messager.alert("系统信息", "只能选择单个记录进行修改。");
  38. return;
  39. }
  40. var redirectTo = url + "?collegeID=" + d + "&MNU=" + mnu;
  41. $.popupTopWindow(EMIS_CollegeLabel + '修改', redirectTo, 600, 350, null, null);
  42. }
  43. //删除
  44. function College_Delete() {
  45. var d = validChoose().join(',');
  46. if (d == "") {
  47. $.messager.alert("系统信息", "请选择您要删除的信息。");
  48. return;
  49. }
  50. $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
  51. if (r) {
  52. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/College/Delete', { collegeIDs: d }, function (data) {
  53. if (data == "删除成功。") {
  54. $.messager.alert("系统提示", data);
  55. $("#dgCollegeList").cmsXDataTable('load');
  56. } else {
  57. $.messager.alert("系统提示", data);
  58. }
  59. });
  60. }
  61. });
  62. }
  63. //查看
  64. function edit(rowindex, rowdata) {
  65. var redirectTo = url + "?CollegeID=" + rowdata.CollegeID + "&MNU=" + mnu + "&Type=1";
  66. $.popupTopWindow(EMIS_CollegeLabel + '信息', redirectTo, 600, 350, null, null);
  67. }
  68. //导出Excel
  69. function College_Export() {
  70. $("#formQuery").submit();
  71. }
  72. //Excel导入
  73. function College_Import() {
  74. var redirectTo = CMS_SystemConfig.VirtualDirectoryPath + '/College/Import?MNU=' + mnu;
  75. $.popupTopWindow(EMIS_CollegeLabel + '信息导入', redirectTo, 420, 300, reload);
  76. }
  77. //联动
  78. function QueryCampusComboGridList() {
  79. reload();
  80. }
  81. function College_Synchr() {
  82. $.messager.confirm("系统提示", "您确定要从数据中心同步院系所信息?", function (r) {
  83. if (r) {
  84. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/College/Synchr', null, function (ret) {
  85. $.messager.alert("系统提示", ret.Message);
  86. if (ret.IsSuccess) {
  87. $("#dgCollegeList").cmsXDataTable('load');
  88. }
  89. });
  90. }
  91. });
  92. }