123456789101112131415161718192021 |
- Ext.define('erp.view.pm.make.MakePlan',{
- extend: 'Ext.Viewport',
- layout: 'anchor',
- hideBorders: true,
- initComponent : function(){
- var me = this;
- Ext.apply(me, {
- items: [{
- region: 'north',
- xtype: "erpBatchDealFormPanel",
- anchor: '100% 20%',
- },{
- region: 'south',
- xtype: 'erpDatalistGridPanel',
- _noc:1,
- anchor: '100% 80%'
- }]
- });
- me.callParent(arguments);
- }
- });
|