ContentPanel.js 356 B

12345678910111213141516171819
  1. /*
  2. * @Description:
  3. * @Author: hy
  4. * @Date: 2019-08-12 17:59:33
  5. * @LastEditTime: 2019-08-13 09:06:14
  6. */
  7. Ext.define('uas.view.main.ContentPanel', {
  8. extend: 'Ext.panel.Panel',
  9. xtype: 'contentPanel',
  10. id: 'content-panel',
  11. layout:'fit',
  12. scrollable: true,
  13. requires: [
  14. 'Ext.layout.container.Fit'
  15. ],
  16. layout: 'fit'
  17. });