AssetsClose.js 629 B

123456789101112131415161718192021222324252627282930313233
  1. Ext.define('erp.view.fa.fix.AssetsClose',{
  2. extend: 'Ext.Viewport',
  3. layout: {
  4. type: 'vbox',
  5. align: 'center',
  6. pack: 'center'
  7. },
  8. initComponent : function(){
  9. var me = this;
  10. Ext.apply(me, {
  11. items: [{
  12. width: 450,
  13. height: 300,
  14. bodyStyle: 'background: #f1f1f1;',
  15. xtype: 'form',
  16. title: '固定资产关账作业',
  17. layout: {
  18. type: 'vbox',
  19. align: 'center'
  20. },
  21. buttonAlign: 'center',
  22. buttons: [{
  23. xtype: 'erpConfirmButton',
  24. height: 26
  25. },{
  26. xtype:'erpCloseButton',
  27. height: 26
  28. }]
  29. }]
  30. });
  31. me.callParent(arguments);
  32. }
  33. });