Ext.define('erp.view.fa.gla.WriteVoucher', { extend: 'Ext.Viewport', layout: 'anchor', hideBorders: true, initComponent : function(){ var me = this; Ext.apply(me, { items: [{ anchor: '100% 10%', xtype: 'toolbar', items: ['期间:', { xtype: 'tbtext', id: 'yearmonth' },'->', { xtype: 'erpAccountedButton' },'-',{ text: $I18N.common.button.erpCloseButton, iconCls: 'x-button-icon-close', cls: 'x-btn-gray', handler: function(){ var main = parent.Ext.getCmp("content-panel"); main.getActiveTab().close(); } }] },{ anchor: '100% 90%', xtype: 'erpGridPanel2' }] }); me.callParent(arguments); } });