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.

145 lines
6.0 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. /**
  5. * 當前程式所有ID名稱集合
  6. */
  7. idKeys: ['OrgID'],
  8. /**
  9. * 當前程式所有參數名稱集合
  10. */
  11. paramKeys: ['OrgID'],
  12. /**
  13. * 修改完后是否跳轉
  14. */
  15. updateGo: false,
  16. /**
  17. * 客製化驗證規則
  18. * @param {Object} pargs CanDo 對象
  19. */
  20. validRulesCus: function (pargs) {
  21. $.validator.addMethod("orgidrule", function (value) {
  22. var bRetn = true;
  23. if (value) {
  24. g_api.ConnectLite(pargs.ProgramId, pargs._api.getcout,
  25. {
  26. OrgID: value,
  27. },
  28. function (res) {
  29. if (res.RESULT && res.DATA.rel > 0) {
  30. bRetn = false;
  31. }
  32. }, null, false);
  33. }
  34. return bRetn;
  35. });
  36. },
  37. /**
  38. * 驗證規則
  39. */
  40. validRules: function (pargs) {
  41. return {
  42. onfocusout: false,
  43. rules: {
  44. OrgID: { orgidrule: pargs.action === 'add' ? true : false },
  45. },
  46. messages: {
  47. OrgID: { orgidrule: i18next.t("message.Data_Repeat") }// ╠message.Data_Repeat⇒此筆資料已建檔╣
  48. }
  49. };
  50. },
  51. /**
  52. * 須初始化的UEEditer 的物件ID集合
  53. */
  54. ueEditorIds: ['ServiceTitle', 'ServiceTitle_CN', 'ServiceTitle_EN', 'Introduction', 'Introduction_CN', 'Introduction_EN', 'VideoDescription', 'VideoDescription_CN', 'VideoDescription_EN', 'MissionAndVision_TW', 'MissionAndVision_CN', 'MissionAndVision_EN'],
  55. /**
  56. * 頁面初始化
  57. * @param {Object} pargs CanDo 對象
  58. */
  59. pageInit: function (pargs) {
  60. if (pargs.action === 'upd') {
  61. $('#OrgID').prop('disabled', true);
  62. pargs._getOne().done(function (res) {
  63. pargs.data.LoGoId = pargs.data.LoGoId || guid();
  64. pargs.data.BackgroundImage = pargs.data.BackgroundImage || guid();
  65. pargs.data.WebsiteLgoId = pargs.data.WebsiteLgoId || guid();
  66. pargs.data.PicShowId = pargs.data.PicShowId || guid();
  67. pargs.data.WebsiteLgoId_CN = pargs.data.WebsiteLgoId_CN || guid();
  68. pargs.data.PicShowId_CN = pargs.data.PicShowId_CN || guid();
  69. pargs.data.WebsiteLgoId_EN = pargs.data.WebsiteLgoId_EN || guid();
  70. pargs.data.PicShowId_EN = pargs.data.PicShowId_EN || guid();
  71. fnGetUploadFiles(pargs.data.LoGoId, fnUpload, 'fileInput1');
  72. fnGetUploadFiles(pargs.data.BackgroundImage, fnUpload, 'fileInput2');
  73. fnGetUploadFiles(pargs.data.WebsiteLgoId, fnUpload, 'fileInput3');
  74. fnGetUploadFiles(pargs.data.PicShowId, fnUpload, 'fileInput4');
  75. fnGetUploadFiles(pargs.data.WebsiteLgoId_EN, fnUpload, 'fileInput3_EN');
  76. fnGetUploadFiles(pargs.data.PicShowId_EN, fnUpload, 'fileInput4_EN');
  77. fnGetUploadFiles(pargs.data.WebsiteLgoId_CN, fnUpload, 'fileInput3_CN');
  78. fnGetUploadFiles(pargs.data.PicShowId_CN, fnUpload, 'fileInput4_CN');
  79. });
  80. }
  81. else {
  82. pargs.data.LoGoId = guid();
  83. pargs.data.BackgroundImage = guid();
  84. pargs.data.WebsiteLgoId = guid();
  85. pargs.data.PicShowId = guid();
  86. pargs.data.WebsiteLgoId_CN = guid();
  87. pargs.data.PicShowId_CN = guid();
  88. pargs.data.WebsiteLgoId_EN = guid();
  89. pargs.data.PicShowId_EN = guid();
  90. fnUpload(null, pargs.data.LoGoId, 'fileInput1');
  91. fnUpload(null, pargs.data.BackgroundImage, 'fileInput2');
  92. fnUpload(null, pargs.data.WebsiteLgoId, 'fileInput3');
  93. fnUpload(null, pargs.data.PicShowId, 'fileInput4');
  94. fnUpload(null, pargs.data.WebsiteLgoId_EN, 'fileInput3_EN');
  95. fnUpload(null, pargs.data.PicShowId_EN, 'fileInput4_EN');
  96. fnUpload(null, pargs.data.WebsiteLgoId_CN, 'fileInput3_CN');
  97. fnUpload(null, pargs.data.PicShowId_CN, 'fileInput4_CN');
  98. }
  99. }
  100. }),
  101. /**
  102. * 上傳附件
  103. * @param {Array} files 當前文件
  104. * @param {String} parentid
  105. * @param {String} inputid file input id
  106. */
  107. fnUpload = function (files, parentid, inputid) {
  108. var option = {};
  109. switch (inputid) {
  110. case 'fileInput1':
  111. option.limit = 1;
  112. option.type = 'one';
  113. option.theme = 'dragdropbox1';
  114. break;
  115. case 'fileInput2':
  116. option.limit = 1;
  117. option.type = 'one';
  118. option.theme = 'dragdropbox2';
  119. break;
  120. case 'fileInput3':
  121. case 'fileInput3_EN':
  122. case 'fileInput3_CN':
  123. option.limit = 1;
  124. option.type = 'one';
  125. option.theme = inputid;
  126. break;
  127. case 'fileInput4':
  128. case 'fileInput4_EN':
  129. case 'fileInput4_CN':
  130. option.limit = 99;
  131. option.theme = 'dragdropbox4';
  132. break;
  133. }
  134. option.input = $('#' + inputid);
  135. option.parentid = parentid;
  136. option.extensions = ['jpg', 'jpeg', 'png', 'bmp', 'gif', 'png', 'svg'];
  137. option.folder = 'Organization';
  138. if (files) {
  139. option.files = files;
  140. }
  141. fnUploadRegister(option);
  142. };
  143. };
  144. require(['base', 'filer', 'cando'], fnPageInit);