| 123456789101112131415161718192021222324252627282930313233 |
- Ext.define('erp.view.fa.fix.AssetsClose',{
- extend: 'Ext.Viewport',
- layout: {
- type: 'vbox',
- align: 'center',
- pack: 'center'
- },
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- width: 450,
- height: 300,
- bodyStyle: 'background: #f1f1f1;',
- xtype: 'form',
- title: '固定资产关账作业',
- layout: {
- type: 'vbox',
- align: 'center'
- },
- buttonAlign: 'center',
- buttons: [{
- xtype: 'erpConfirmButton',
- height: 26
- },{
- xtype:'erpCloseButton',
- height: 26
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|