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.

130 lines
5.7 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. sortField: 'GoTop DESC,GoTop_Time DESC,CreateDate',
  5. sortOrder: 'desc',
  6. /**
  7. * 當前程式所有ID名稱集合
  8. */
  9. idKeys: ['OrgID', 'AnnouncementID'],
  10. /**
  11. * Grid欄位設置可以是 function
  12. */
  13. gridFields: [
  14. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
  15. {
  16. name: "Ann_Type", title: 'Announcement_Upd.Ann_Type', width: 120, align: 'center', itemTemplate: function (val, item) {
  17. return $('#Ann_Type option[value=' + val + ']').text().split('-')[1];
  18. }
  19. },
  20. { name: "Title", title: 'Announcement_Upd.Title', width: 300 },
  21. {
  22. name: "StartDateTime", title: 'Announcement_Upd.StartDateTime', width: 120, align: 'center', itemTemplate: function (val, item) {
  23. return newDate(val, 'date');
  24. }
  25. },
  26. {
  27. name: "EndDateTime", title: 'Announcement_Upd.EndDateTime', width: 120, align: 'center', itemTemplate: function (val, item) {
  28. return newDate(val, 'date');
  29. }
  30. },
  31. {// ╠common.GoTop⇒置頂╣
  32. name: "GoTop", title: 'common.GoTop', width: 100, align: 'center', itemTemplate: function (val, item) {
  33. var oCheckBox = $('<input>', {
  34. type: 'checkbox',
  35. checked: val,
  36. click: function () {
  37. var oPm = { AnnouncementID: item.AnnouncementID };
  38. if (this.checked) {
  39. oPm.GoTop = true;
  40. }
  41. else {
  42. oPm.GoTop = false;
  43. }
  44. g_api.ConnectLite(canDo.ProgramId, 'UpdateGoTop', oPm, function (res) {
  45. if (res.RESULT) {
  46. canDo.Grid.openPage(canDo.bToFirstPage ? 1 : canDo.pageIndex);
  47. }
  48. });
  49. }
  50. });
  51. return oCheckBox;
  52. }
  53. },
  54. {
  55. title: 'common.Action', width: 100, align: 'center',
  56. itemTemplate: function (val, item) {
  57. var oDom = $('<a/>', {
  58. html: i18next.t('common.See'),// ╠common.See⇒查看╣
  59. class: 'a-url',
  60. click: function () {
  61. fnOpenAnn(item.AnnouncementID);
  62. return false;
  63. }
  64. });
  65. return $('<div>', { 'style': 'width:100%;text-align: center;' }).append(oDom);
  66. }
  67. }
  68. ],
  69. /**
  70. * 當前程式所有ID名稱集合
  71. */
  72. rowDoubleClick: function (pargs, args) {
  73. fnOpenAnn(args.item.AnnouncementID);
  74. },
  75. /**
  76. * 頁面初始化
  77. * @param {Object} pargs CanDo 對象
  78. */
  79. pageInit: function (pargs) {
  80. $.when(fnSetArgDrop([
  81. {
  82. ArgClassID: 'Ann_Type',
  83. Select: $('#Ann_Type'),
  84. ShowId: true
  85. }
  86. ])).done(function () {
  87. pargs._reSetQueryPm();
  88. pargs._initGrid();
  89. });
  90. }
  91. }),
  92. /**
  93. * 查看公告明細
  94. * @param {String} id 公告guid
  95. */
  96. fnOpenAnn = function (id) {
  97. getHtmlTmp('/Page/Pop/AnnounceInfo.html').done(function (html) {
  98. var oAnnInfo = canDo.Grid.data.filter(function (item) { return item.AnnouncementID === id; })[0];
  99. oAnnInfo.CategoryName = '公&nbsp;&nbsp;告';
  100. oAnnInfo.CreateUserName = oAnnInfo.CreateUser;
  101. oAnnInfo.CreateDate = newDate(oAnnInfo.CreateDate, 'date');
  102. var sHtml = $('<script type="text/x-jsrender"/>').html(html).render(oAnnInfo);
  103. layer.open({
  104. type: 1, //0(信息框,默认)1(页面层)2(iframe层)3(加载层)4(tips层)
  105. title: i18next.t('common.Announcement'),
  106. area: '640px;',//寬度
  107. shade: 0.75,//遮罩
  108. closeBtn: 1,
  109. shadeClose: true,
  110. //maxmin: true, //开启最大化最小化按钮
  111. id: 'layer_Announce', //设定一个id,防止重复弹出
  112. offset: '12px',
  113. anim: 0,//彈出動畫
  114. btn: [],
  115. btnAlign: 'c',//按鈕位置
  116. content: sHtml,
  117. success: function (layero, index) {
  118. layero.find('a').each(function () {
  119. if (($(this).attr('href') || '').indexOf('net/upload/file') > -1 && (($(this).prev().attr('src') || '').indexOf('icon_jpg') > -1 || ($(this).prev().attr('src') || '').indexOf('icon_pdf') > -1)) {
  120. $(this).attr('target', '_new');
  121. }
  122. });
  123. layero.find('.layui-layer-title').css({ 'text-align': 'center', 'padding': '0 30px 0 20px', 'font-size': '20px', 'font-weight': '600' });
  124. slimScroll();
  125. }
  126. });
  127. });
  128. };
  129. };
  130. require(['base', 'jsgrid', 'cando'], fnPageInit);