WCPlanResult.js 449 B

12345678910111213141516171819202122
  1. Ext.define('erp.view.pm.make.WCPlanResult',{
  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: "erpQueryFormPanel",
  11. _noc:1,
  12. anchor: '100% 20%',
  13. },{
  14. region: 'south',
  15. xtype: 'erpDatalistGridPanel',
  16. _noc:1,
  17. anchor: '100% 80%'
  18. }]
  19. });
  20. me.callParent(arguments);
  21. }
  22. });