Panel.js 346 B

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