NavigationDetails.js 518 B

123456789101112131415161718192021222324
  1. Ext.define('erp.view.common.NavigationDetails',{
  2. extend: 'Ext.Viewport',
  3. layout: 'anchor',
  4. hideBorders: true,
  5. initComponent : function(){
  6. var me = this;
  7. Ext.apply(me, {
  8. items: [{
  9. xtype:'tabpanel',
  10. anchor: '100% 100%',
  11. tabPosition: 'bottom',
  12. layout:'fit',
  13. tabBar: {
  14. height: 25, //tab bar高度
  15. defaults: {
  16. height: 23 //tab 里的title的高度
  17. }
  18. },
  19. items:[]
  20. }]
  21. });
  22. me.callParent(arguments);
  23. }
  24. });