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.

34 lines
1.2 KiB

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. sortField: 'SettingItem',
  5. sortOrder: 'asc',
  6. /**
  7. * 當前程式所有ID名稱集合
  8. */
  9. idKeys: ['OrgID', 'SettingItem'],
  10. /**
  11. * Grid欄位設置可以是 function
  12. */
  13. gridFields: [
  14. { name: "RowIndex", title: 'common.RowNumber', align: 'center', width: 50, sorting: false },
  15. { name: "SettingItem", title: 'SystemSetup_Qry.SettingItem', width: 200 },
  16. { name: "SettingDescription", title: 'SystemSetup_Qry.SettingDescription', width: 200 },
  17. { name: "SettingValue", title: 'SystemSetup_Qry.SettingValue', width: 200 },
  18. {
  19. name: "Effective", title: 'common.Status', align: 'center', width: 200, itemTemplate: function (val) {
  20. return val === 'Y' ? i18next.t('common.Effective') : i18next.t('common.Invalid');
  21. }
  22. }
  23. ],
  24. /**
  25. * 頁面初始化
  26. * @param {Object} pargs CanDo 對象
  27. */
  28. pageInit: function (pargs) {
  29. pargs._reSetQueryPm();
  30. pargs._initGrid();
  31. }
  32. });
  33. };
  34. require(['base', 'jsgrid', 'cando'], fnPageInit);