FinalCheckWork.js 438 B

123456789101112131415161718192021
  1. Ext.define('erp.view.fa.ars.FinalCheckWork',{
  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. id:'FinalCheckWorkView',
  12. confirmUrl:'fa/ars/confirmFinalCheckWork.action',
  13. xtype: 'FinalCheckWork',
  14. anchor: '100% 100%',
  15. }]
  16. }]
  17. });
  18. me.callParent(arguments);
  19. }
  20. });