FunnelCRM.js 633 B

12345678910111213141516171819202122232425262728293031
  1. Ext.define('erp.view.crm.chance.FunnelCRM',{
  2. extend: 'Ext.Viewport',
  3. id:'ccc',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. id:'funnelwin',
  10. xtype: "window",
  11. autoShow: true,
  12. closable: true,
  13. maximizable : false,
  14. buttonAlign: 'center',
  15. buttons: [
  16. {
  17. id:'closebtn',
  18. text: '关 闭'
  19. }
  20. ],
  21. //height:400,
  22. // width:300,
  23. width: '70%',
  24. height: '85%',
  25. layout: 'fit',
  26. fieldStyle : "background:#FFFAFA;color:#515151;",
  27. }]
  28. });
  29. me.callParent(arguments);
  30. }
  31. });