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.

32 lines
1.1 KiB

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