| 12345678910111213141516171819202122 |
- Ext.define('uas.view.grid.summary.Panel', {
- extend: 'Ext.tab.Panel',
- xtype: 'grid-summary-panel',
- requires: [
- 'uas.view.grid.summary.Summary1',
- 'uas.view.grid.summary.Summary2',
- 'uas.view.grid.summary.Summary3'
- ],
- items: [{
- title: '位置联动',
- xtype: 'summary1',
- }, {
- title: '位置固定',
- xtype: 'summary2'
- }, {
- title: '后台计算',
- xtype: 'summary3'
- }]
- });
|