Panel.js 346 B

12345678910111213141516
  1. Ext.define('uas.view.grid.summary.Panel', {
  2. extend: 'Ext.tab.Panel',
  3. xtype: 'grid-summary-panel',
  4. items: [{
  5. title: '位置联动',
  6. xtype: 'summary1',
  7. }, {
  8. title: '位置固定',
  9. xtype: 'summary2'
  10. }, {
  11. title: '后台计算',
  12. html: '需配合分页使用,待完善'
  13. }]
  14. });