Panel.js 427 B

1234567891011121314151617181920212223
  1. /**
  2. * 成绩分析
  3. */
  4. Ext.define('school.view.analysis.consumption.Panel', {
  5. extend: 'Ext.panel.Panel',
  6. xtype: 'analysis-consumption',
  7. viewModel: 'analysis-consumption',
  8. layout: 'responsivecolumn',
  9. scrollable: true,
  10. defaults: {
  11. userCls: 'big-50 small-100',
  12. padding: 10
  13. },
  14. items: [{
  15. xtype: 'consumption-chart1'
  16. }, {
  17. xtype: 'consumption-chart2'
  18. }]
  19. });