| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- Ext.define('erp.view.fa.gla.ResearchFee',{
- extend: 'Ext.Viewport',
- layout: {
- type: 'hbox',
- align: 'middle',
- pack: 'center'
- },
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- xtype: 'form',
- height: 260,
- width: 440,
- bodyStyle: 'background: #f1f1f1;',
- title: '研发费用结转',
- layout: {
- type : 'vbox',
- pack : 'center'
- },
- fieldDefaults: {
- margin: '5 3 5 20',
- labelWidth: 150
- },
- items: [{
- width: 300,
- xtype: 'displayfield',
- fieldLabel: '总账期间',
- name: 'yearmonth',
- id: 'yearmonth'
- }],
- buttonAlign: 'center',
- buttons: [{
- text: '执行',
- id: 'deal',
- cls: 'x-btn-gray',
- iconCls: 'x-button-icon-submit'
- }, {
- xtype: 'erpCloseButton'
- }]
- }]
- });
- this.callParent(arguments);
- }
- });
|