SysCheckTreeScan.js 588 B

12345678910111213141516171819202122232425262728
  1. Ext.define('erp.view.ma.SysCheckTreeScan', {
  2. extend : 'Ext.Viewport',
  3. layout : 'fit',
  4. hideBorders : true,
  5. initComponent : function() {
  6. var me = this;
  7. Ext.apply(me, {
  8. items : [{
  9. layout:'border',
  10. items : [{
  11. //style : 'background:#CDCDB4',
  12. //bodyStyle : 'background:#CDCDB4;',
  13. anchor : '100% 7%',
  14. region:'north',
  15. xtype : 'SearChForm',
  16. },{
  17. anchor:'100% 93%',
  18. layout:'fit',
  19. autoScroll:true,
  20. region:'center',
  21. xtype : 'erpSysCheckTreeGrid',
  22. condition:'1=1'
  23. }]
  24. }]
  25. });
  26. me.callParent(arguments);
  27. }
  28. });