MakePlan.js 437 B

123456789101112131415161718192021
  1. Ext.define('erp.view.pm.make.MakePlan',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. region: 'north',
  10. xtype: "erpBatchDealFormPanel",
  11. anchor: '100% 20%',
  12. },{
  13. region: 'south',
  14. xtype: 'erpDatalistGridPanel',
  15. _noc:1,
  16. anchor: '100% 80%'
  17. }]
  18. });
  19. me.callParent(arguments);
  20. }
  21. });