Ext.define('erp.view.co.cost.CostAccount',{ 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;', margin: '-20 0 0 0', xtype: 'form', title: '成本计算作业', layout: { type: 'vbox', align: 'center' }, items: [{ xtype: 'container', contentEl: 'desc' },{ margin : '20 0 0 0', xtype: 'monthdatefield', fieldLabel: '日期', allowBlank: false, labelWidth: 40, id: 'date', name: 'date' }], buttonAlign: 'center', buttons: [{ xtype: 'erpConfirmButton' },{ xtype:'erpCloseButton' }] }] }); me.callParent(arguments); } });