DictionaryItem.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. var url = CMS_SystemConfig.VirtualDirectoryPath + "/DictionaryItem/Edit";
  2. var mnu = "";
  3. //加载
  4. $(function () {
  5. mnu = $.SystemGeneral.getUrlParam("MNU");
  6. })
  7. //刷新
  8. function reload() {
  9. $("#dgDictionaryItemList").cmsXDataTable("load", $.getDataGridParams("dgDictionaryItemList"));
  10. }
  11. //获取选中的数据
  12. function validChoose() {
  13. var d = [];
  14. $.each($("#dgDictionaryItemList").cmsXDataTable("getSelections"), function (index) {
  15. d.push(this.DictionaryItemID);
  16. });
  17. return d;
  18. }
  19. //新增
  20. function DictionaryItem_Add() {
  21. var d = validChoose();
  22. if (d.length > 0) {
  23. $.popupTopWindow('数据字典复制新增', CMS_SystemConfig.VirtualDirectoryPath + '/DictionaryItem/CopyAdd?dictionaryItemID=' + d[0] + '&isCodeAdd=1&MNU=' + mnu, 650, 245, null, null);
  24. } else {
  25. var redirectTo = url + "?MNU=" + mnu;
  26. $.popupTopWindow('数据字典新增', redirectTo, 650, 245, null, null);
  27. }
  28. }
  29. //修改
  30. function DictionaryItem_Update() {
  31. var d = validChoose();
  32. if (d.length == 0) {
  33. $.messager.alert("系统信息", "请选择您要修改的信息。");
  34. return;
  35. }
  36. if (d.length > 1) {
  37. $.messager.alert("系统信息", "只能选择单个记录进行修改。");
  38. return;
  39. }
  40. var redirectTo = url + "?dictionaryItemID=" + d + "&MNU=" + mnu;
  41. $.popupTopWindow('数据字典修改', redirectTo, 650, 245, null, null);
  42. }
  43. //删除
  44. function DictionaryItem_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 + '/DictionaryItem/Delete', { dictionaryItemIDs: d }, function (data) {
  53. if (data.IsSuccess) {
  54. $.messager.alert("系统提示", data.Message);
  55. $("#dgDictionaryItemList").cmsXDataTable('load');
  56. } else {
  57. $.messager.alert("系统提示", data.Message);
  58. }
  59. });
  60. }
  61. });
  62. }
  63. //查看明细
  64. function edit(rowindex, rowdata) {
  65. var redirectTo = url + "?dictionaryItemID=" + rowdata.DictionaryItemID + "&MNU=" + mnu + "&Type=1";
  66. $.popupTopWindow('数据字典信息', redirectTo, 650, 245, null, null);
  67. }
  68. //设置列颜色为红色
  69. function SetRedColumn(index, row, value) {
  70. return " <span style=\"color: red;\">" + value + "</span>";
  71. }
  72. //Excel导出
  73. function DictionaryItem_Export() {
  74. $("#formQuery").submit();
  75. }