12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- Ext.define('erp.view.plm.cost.MonthAccountOver',{
- 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'
- },
- items: [{
- margin : '40 0 0 0',
- xtype: 'monthdatefield',
- fieldLabel: '期间',
- allowBlank: false,
- readOnly: true,
- labelWidth: 60,
- id: 'date',
- name: 'date'
- }],
- buttonAlign: 'center',
- buttons: [{
- xtype: 'erpStartAccountButton',
- height: 26
- },{
- xtype: 'erpOverAccountButton',
- height: 26
- },{
- xtype:'erpCloseButton',
- height: 26
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|