teamInfo.js 852 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.oa.vehicle.teamInfo',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. layout: 'anchor',
  10. items: [{
  11. xtype: 'erpFormPanel',
  12. anchor: '100% 100%',
  13. saveUrl: 'oa/vehicle/saveTeamInfo.action',
  14. deleteUrl: 'oa/vehicle/deleteTeamInfo.action',
  15. updateUrl: 'oa/vehicle/updateTeamInfo.action',
  16. auditUrl: 'common/auditCommon.action?caller='+caller,
  17. resAuditUrl: 'common/resAuditCommon.action?caller='+caller,
  18. submitUrl: 'common/submitCommon.action?caller='+caller,
  19. resSubmitUrl: 'common/resSubmitCommon.action?caller='+caller,
  20. getIdUrl: 'common/getId.action?seq=TEAMINFO_SEQ',
  21. keyField: 'ti_id'
  22. //statusField: 'mr_status'
  23. }]
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });