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.

35 lines
1.2 KiB

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