RecruitApply.js 953 B

123456789101112131415161718192021222324252627282930
  1. Ext.define('erp.view.hr.emplmana.RecruitApply',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'erpFormPanel',
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 100%',
  14. saveUrl: 'common/saveCommon.action?caller='+caller,
  15. deleteUrl: 'common/deleteCommon.action?caller='+caller,
  16. updateUrl: 'common/updateCommon.action?caller='+caller,
  17. getIdUrl: 'common/getId.action?seq=RecruitApply_SEQ',
  18. auditUrl: 'hr/emplmana/auditRecruitApply.action',
  19. resAuditUrl: 'hr/emplmana/resAuditRecruitApply.action',
  20. endUrl:'hr/emplmana/endRecruitApply.action',
  21. submitUrl: 'common/submitCommon.action?caller='+caller,
  22. resSubmitUrl: 'common/resSubmitCommon.action?caller='+caller,
  23. keyField: 'ra_id',
  24. codeField: 'ra_code',
  25. }]
  26. }]
  27. });
  28. me.callParent(arguments);
  29. }
  30. });