| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- Ext.define('saas.view.main.MainContainerWrap', {
- extend: 'Ext.container.Container',
- xtype: 'maincontainerwrap',
- requires: [
- 'Ext.tab.Panel'
- ],
- id: 'main-view-detail-wrap',
- flex: 1,
- layout: 'border',
- items: [
- {
- xtype: 'main-navigation',
- region: 'west',
- width: 160,
- },
- {
- xtype: 'tabpanel',
- region: 'center',
- flex: 1,
- id:'main-tab-panel',
- reference: 'mainTabPanel',
- cls: 'main-right-tabpanel',
- itemId: 'contentPanel',
- defaults: {
- closable: true,
- margin: 10
- },
- items: [
- {
- xtype: 'home',
- title: '首页',
- closable: false
- }
- ]
- }
- ],
- });
|