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.

24 lines
634 B

2 years ago
  1. 'use strict';
  2. var fnPageInit = function () {
  3. var canDo = new CanDo({
  4. /**
  5. * 當前程式所有ID名稱集合
  6. */
  7. idKeys: ['OrgID', 'JobtitleID'],
  8. /**
  9. * 當前程式所有參數名稱集合
  10. */
  11. paramKeys: ['JobtitleID'],
  12. /**
  13. * 頁面初始化
  14. * @param {Object} pargs CanDo 對象
  15. */
  16. pageInit: function (pargs) {
  17. if (pargs.action === 'upd') {
  18. $('#JobtitleID').prop('disabled', true);
  19. pargs._getOne();
  20. }
  21. }
  22. });
  23. };
  24. require(['base', 'cando'], fnPageInit);