RecordLog.js 546 B

123456789101112131415161718192021222324
  1. Ext.define('erp.view.plm.record.RecordLog',{
  2. extend: 'Ext.Viewport',
  3. layout: 'fit',
  4. autoScroll:true,
  5. hideBorders: true,
  6. initComponent : function(){
  7. var me = this;
  8. Ext.apply(me, {
  9. items: [{
  10. layout: 'anchor',
  11. items: [{
  12. xtype: 'erpFormPanel',
  13. anchor: '100% 100%',
  14. saveUrl: 'plm/record/saveWorkRecord.action',
  15. updateUrl:'plm/record/updateWorkRecord.action',
  16. getIdUrl: 'common/getId.action?seq=WORKRECORD_SEQ',
  17. keyField: 'wr_id',
  18. }
  19. ]
  20. }]
  21. });
  22. me.callParent(arguments);
  23. }
  24. });