statistics.js 353 B

123456789101112131415161718
  1. Ext.define('erp.view.common.statistics', {
  2. extend : 'Ext.Viewport',
  3. id : 'stsViewport',
  4. layout : 'anchor',
  5. hideBorders : true,
  6. initComponent : function() {
  7. var btn = new Ext.Button({
  8. xtype : 'erpQueryButton',
  9. text:'筛 选',
  10. renderTo : 'div1',
  11. id:'statistic'
  12. });
  13. btn.render();
  14. var me = this;
  15. me.callParent(arguments);
  16. }
  17. });