Panel.js 471 B

12345678910111213141516171819202122
  1. Ext.define('uas.view.grid.summary.Panel', {
  2. extend: 'Ext.tab.Panel',
  3. xtype: 'grid-summary-panel',
  4. requires: [
  5. 'uas.view.grid.summary.Summary1',
  6. 'uas.view.grid.summary.Summary2',
  7. 'uas.view.grid.summary.Summary3'
  8. ],
  9. items: [{
  10. title: '位置联动',
  11. xtype: 'summary1',
  12. }, {
  13. title: '位置固定',
  14. xtype: 'summary2'
  15. }, {
  16. title: '后台计算',
  17. xtype: 'summary3'
  18. }]
  19. });