Duty.js 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. var url = CMS_SystemConfig.VirtualDirectoryPath + "/Duty/Edit";
  2. var mnu = "";
  3. //加载
  4. $(function () {
  5. mnu = $.SystemGeneral.getUrlParam("MNU");
  6. })
  7. //新增
  8. function Duty_Add() {
  9. var redirectTo = url + "?MNU=" + mnu;
  10. $.popupTopWindow('值班安排新增', redirectTo, 650, 300, null, null);
  11. }
  12. function reload() {
  13. $("#dgDutyList").cmsXDataTable("load", $.getDataGridParams("dgDutyList"));
  14. }
  15. //获取选中的数据
  16. function validChoose() {
  17. var d = [];
  18. $.each($("#dgDutyList").cmsXDataTable("getSelections"), function (index) {
  19. d.push(this.DutyID);
  20. });
  21. return d;
  22. }
  23. //点击列表更新
  24. function edit(rowindex, rowdata) {
  25. var redirectTo = url + "?dutyID=" + rowdata.DutyID + "&MNU=" + mnu + "&isView=1";
  26. $.popupTopWindow('值班安排信息', redirectTo, 650, 300, null, null);
  27. }
  28. //修改按钮
  29. function Duty_Update() {
  30. var d = validChoose();
  31. if (d.length == 0) {
  32. $.messager.alert("系统提示", "请选择您要修改的值班管理信息!");
  33. return;
  34. }
  35. if (d.length > 1) {
  36. $.messager.alert("系统信息", "只能选择单个记录进行修改。");
  37. return;
  38. }
  39. var redirectTo = url + "?dutyID=" + d + "&MNU=" + mnu;
  40. $.popupTopWindow('值班安排修改', redirectTo, 650, 300, null, null);
  41. }
  42. //删除
  43. function Duty_Delete() {
  44. var d = validChoose().join(',');
  45. if (d == "") {
  46. $.messager.alert("系统提示", "请选择您要删除的信息。");
  47. return;
  48. }
  49. $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
  50. if (r) {
  51. $.post(CMS_SystemConfig.VirtualDirectoryPath + '/Duty/Delete', { dutyIDs: d }, function (data) {
  52. if (data == "删除成功!") {
  53. $.messager.alert("系统提示", data);
  54. $("#dgDutyList").cmsXDataTable('load');
  55. } else {
  56. $.messager.alert("系统提示", data);
  57. }
  58. });
  59. }
  60. });
  61. }
  62. function Duty_Export() {
  63. $("#formQuery").submit();
  64. }
  65. function QueryCampusDropdownList(data) {
  66. $("#CollegeDropdown").combobox("reload", CMS_SystemConfig.VirtualDirectoryPath + "/College/CollegeDropdownListBanid?campusID=" + data.Value + "");
  67. reload();
  68. }
  69. function QueryCollegeDropdownList(data) {
  70. $("#DepartmentDropdown").combobox("reload", CMS_SystemConfig.VirtualDirectoryPath + "/Department/DepartmentDropdownListBanid?collegeID=" + data.Value + "");
  71. reload();
  72. }
  73. function QueryDepartmentDropdownList(data) {
  74. reload();
  75. }
  76. function QueryTimesSegmentDropdownList(data) {
  77. reload();
  78. }