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.

174 lines
7.5 KiB

2 years ago
  1. 'use strict';
  2. var sProgramId = getProgramId(),
  3. sEditPrgId = getEditPrgId(),
  4. oGrid = null,
  5. fnPageInit = function () {
  6. var oForm = $('#form_main'),
  7. oBaseQueryPm = {
  8. pageIndex: 1,
  9. pageSize: parent.SysSet.GridRecords || 10,
  10. sortField: 'ModifyDate',
  11. sortOrder: 'desc'
  12. },
  13. /**
  14. * 獲取資料
  15. */
  16. fnGet = function (args) {
  17. var oQueryPm = getFormSerialize(oForm);
  18. $.extend(oQueryPm, oBaseQueryPm, args);
  19. oBaseQueryPm.pageIndex = oQueryPm.pageIndex;
  20. return g_api.ConnectLite(sProgramId, ComFn.GetPage, oQueryPm);
  21. },
  22. /**
  23. * ToolBar 按鈕事件 function
  24. * @param {Object}inst 按鈕物件對象
  25. * @param {Object} e 事件對象
  26. */
  27. fnButtonHandler = function (inst, e) {
  28. var sId = inst.id;
  29. switch (sId) {
  30. case "Toolbar_Qry":
  31. var iNum = $('#PerPageNum').val();
  32. oGrid.pageSize = iNum === '' ? parent.SysSet.GridRecords || 10 : iNum;
  33. cacheQueryCondition();
  34. oGrid.openPage(window.bToFirstPage ? 1 : oBaseQueryPm.pageIndex);
  35. break;
  36. case "Toolbar_Save":
  37. break;
  38. case "Toolbar_ReAdd":
  39. break;
  40. case "Toolbar_Clear":
  41. clearPageVal();
  42. break;
  43. case "Toolbar_Leave":
  44. break;
  45. case "Toolbar_Add":
  46. parent.openPageTab(sEditPrgId, '?Action=Add');
  47. break;
  48. case "Toolbar_Upd":
  49. break;
  50. case "Toolbar_Copy":
  51. break;
  52. case "Toolbar_Del": // ╠message.ConfirmToDelete⇒確定要刪除嗎 ?╣ ╠common.Tips⇒提示╣
  53. break;
  54. default:
  55. alert("No handle '" + sId + "'");
  56. break;
  57. }
  58. },
  59. /**
  60. * 頁面初始化
  61. */
  62. init = function () {
  63. commonInit({
  64. PrgId: sProgramId,
  65. ButtonHandler: fnButtonHandler,
  66. SearchBar: true
  67. });
  68. $.when(fnSetArgDrop([
  69. {
  70. ArgClassID: 'Flow_Type',
  71. Select: $('#Flow_Type'),
  72. ShowId: true
  73. }
  74. ]))
  75. .done(function () {
  76. reSetQueryPm(sProgramId);
  77. var iHeight = $('body').height() - $('.page-title').height() - $('#searchbar').height() - 87;
  78. $("#jsGrid").jsGrid({
  79. width: "100%",
  80. height: iHeight + "px",
  81. autoload: true,
  82. pageLoading: true,
  83. inserting: false,
  84. editing: true,
  85. sorting: true,
  86. paging: true,
  87. pageIndex: window.bToFirstPage ? 1 : window.QueryPageidx || 1,
  88. pageSize: parent.SysSet.GridRecords || 10,
  89. pageButtonCount: parent.SysSet.GridPages || 15,
  90. pagePrevText: "<",
  91. pageNextText: ">",
  92. pageFirstText: "<<",
  93. pageLastText: ">>",
  94. onPageChanged: function (args) {
  95. cacheQueryCondition(args.pageIndex);
  96. },
  97. rowClick: function (args) {
  98. if (navigator.userAgent.match(/mobile/i)) {
  99. goToEdit(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  100. }
  101. },
  102. rowDoubleClick: function (args) {
  103. parent.openPageTab(sEditPrgId, '?Action=Upd&Guid=' + args.item.Guid);
  104. },
  105. fields: [
  106. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
  107. {
  108. name: "Flow_TypeName", title: 'CheckFlow_Upd.Flow_Type', width: 100
  109. },
  110. { name: "Flow_Name", title: 'CheckFlow_Upd.Flow_Name', width: 250 },
  111. {
  112. name: "Flows", title: 'CheckFlow_Upd.Flows', width: 400, itemTemplate: function (val, item) {
  113. var saFlows = $.parseJSON(item.Flows),
  114. saFlowsText = [],
  115. sFlowsText = '';
  116. $.each(saFlows, function (idx, flow) {
  117. var sFlowType = i18next.t('common.' + flow.SignedWay);
  118. if (flow.SignedWay !== 'flow1') {
  119. saFlowsText.push(sFlowType + '(' + Enumerable.From(flow.SignedMember).ToString(",", "$.name") + ')');
  120. }
  121. else {
  122. saFlowsText.push(Enumerable.From(flow.SignedMember).ToString(",", "$.name"));
  123. }
  124. });
  125. sFlowsText = saFlowsText.join(' → ');
  126. return $('<a>', { html: sFlowsText.length > 90 ? sFlowsText.substr(0, 90) + '...' : sFlowsText, title: sFlowsText });
  127. }
  128. },
  129. {
  130. name: "Handle_PersonName", title: 'common.Handle_Person', width: 100, align: 'center'
  131. },
  132. {
  133. name: "ModifyUserName", title: 'common.ModifyUser', width: 100, align: 'center'
  134. },
  135. {
  136. name: "ModifyDate", title: 'common.ModifyDate', width: 120, align: 'center', itemTemplate: function (val, item) {
  137. return newDate(val);
  138. }
  139. }
  140. ],
  141. controller: {
  142. loadData: function (args) {
  143. return fnGet(args);
  144. },
  145. },
  146. onInit: function (args) {
  147. oGrid = args.grid;
  148. }
  149. });
  150. });
  151. };
  152. init();
  153. };
  154. require(['base', 'jsgrid', 'common_eip', 'util'], fnPageInit);