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.

29 lines
933 B

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