Specialty.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. var url = CMS_SystemConfig.VirtualDirectoryPath + "/Specialty/Edit";
  2. var mnu = "";
  3. //加载
  4. $(function () {
  5. mnu = $.SystemGeneral.getUrlParam("MNU");
  6. })
  7. //刷新
  8. function reload() {
  9. $("#dgSpecialtyList").cmsXDataTable("load", $.getDataGridParams("dgSpecialtyList"));
  10. }
  11. //获取选中的数据
  12. function validChoose() {
  13. var d = [];
  14. $.each($("#dgSpecialtyList").cmsXDataTable("getSelections"), function (index) {
  15. d.push(this.SpecialtyID);
  16. });
  17. return d;
  18. }
  19. //新增
  20. function Specialty_Add() {
  21. var d = validChoose();
  22. if (d.length > 0) {
  23. $.popupTopWindow('专业信息复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/Specialty/CopyAdd?specialtyID=' + d[0] + '&MNU=' + mnu, 650, 320, null, null);
  24. } else {
  25. var redirectTo = url + "?MNU=" + mnu;
  26. $.popupTopWindow('专业信息新增', redirectTo, 650, 320, null, null);
  27. }
  28. }
  29. //修改
  30. function Specialty_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 + "?specialtyID=" + d + "&MNU=" + mnu + "&type=edit";
  41. $.popupTopWindow('专业信息修改', redirectTo, 650, 320, null, null);
  42. }
  43. //查看
  44. function edit(rowindex, rowdata) {
  45. var redirectTo = url + "?specialtyID=" + rowdata.SpecialtyID + "&MNU=" + mnu + "&type=detail";
  46. $.popupTopWindow('专业信息', redirectTo, 650, 320, null, null);
  47. }
  48. //删除
  49. function Specialty_Delete() {
  50. var d = validChoose().join(',');
  51. if (d == "") {
  52. $.messager.alert("系统提示", "请选择您要删除的信息。");
  53. return;
  54. }
  55. $.messager.confirm("系统提示", "您确定要删除选择的信息?", function (r) {
  56. if (r) {
  57. $.postWithLoading(CMS_SystemConfig.VirtualDirectoryPath + '/Specialty/Delete', { specialtyIDs: d }, function (data) {
  58. if (data.IsSuccess) {
  59. $.messager.alert("系统提示", data.Message);
  60. $("#dgSpecialtyList").cmsXDataTable('load');
  61. } else {
  62. $.messager.alert("系统提示", data.Message);
  63. }
  64. });
  65. }
  66. });
  67. }
  68. //设置相应的行颜色为红色
  69. function SetRedGrid(rowIndex, rowData) {
  70. if (rowData.RecordStatus <= 0) {
  71. return "color: red;";
  72. } else {
  73. return "";
  74. }
  75. }
  76. //Excel导出
  77. function Specialty_Export() {
  78. $("#formQuery").submit();
  79. }
  80. //Excel导入
  81. function Specialty_Import() {
  82. var redirectTo = CMS_SystemConfig.VirtualDirectoryPath + '/Specialty/Import?MNU=' + mnu;
  83. $.popupTopWindow('专业信息导入', redirectTo, 420, 300, reload);
  84. }