| 1234567891011121314151617181920212223 |
- /**
- * 成绩分析
- */
- Ext.define('school.view.analysis.consumption.Panel', {
- extend: 'Ext.panel.Panel',
- xtype: 'analysis-consumption',
- viewModel: 'analysis-consumption',
- layout: 'responsivecolumn',
- scrollable: true,
- defaults: {
- userCls: 'big-50 small-100',
- padding: 10
- },
- items: [{
- xtype: 'consumption-chart1'
- }, {
- xtype: 'consumption-chart2'
- }]
- });
|