| 123456789101112131415161718192021222324252627282930313233343536 |
- Ext.define('erp.view.co.cost.MakeCostUnClose',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- var w = Ext.isIE ? screen.width*0.6*0.45 : '45%',
- h = Ext.isIE ? screen.height*0.7*0.45 : '45%';
- Ext.apply(me, {
- items: [{
- xtype: "window",
- autoShow: true,
- closable: false,
- maximizable : true,
- width: w,
- height: h,
- layout: 'anchor',
- items: [{
- xtype: 'form',
- anchor: '100% 100%',
- title: '主营成本结转凭证取消',
- bodyStyle: 'background:#f1f1f1',
- buttonAlign: 'center',
- buttons: [{
- cls: 'x-btn-gray',
- id: 'unclose',
- text: '取消凭证'
- },{
- xtype:'erpCloseButton'
- }]
- }]
- }]
- });
- me.callParent(arguments);
- }
- });
|