| 12345678910111213141516 |
- Ext.define('uas.view.grid.summary.Panel', {
- extend: 'Ext.tab.Panel',
- xtype: 'grid-summary-panel',
- items: [{
- title: '位置联动',
- xtype: 'summary1',
- }, {
- title: '位置固定',
- xtype: 'summary2'
- }, {
- title: '后台计算',
- html: '需配合分页使用,待完善'
- }]
- });
|