| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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);
- }
- });
|