| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- Ext.define('saas.view.main.Main', {
- extend: 'Ext.container.Container',
- xtype: 'main',
- requires: [
- 'Ext.list.Tree',
- 'Ext.Img'
- ],
-
- controller: 'main',
- viewModel: 'main',
-
- cls: 'main-ct',
- id: 'mainView',
- itemId: 'mainView',
- layout: {
- type: 'vbox',
- align: 'stretch'
- },
- items: [
- {
- xtype: 'toolbar',
- cls: 'main-headerbar shadow',
- height: 64,
- itemId: 'headerBar',
- items: [
- {
- xtype: 'component',
- reference: 'mainLogo',
- cls: 'main-logo-wrap',
- html: '<div class="main-logo"><img src="resources/images/default/logo-default.png">优企云服</div>',
- width: 160
- },
- {
- margin: '0 0 0 8',
- ui: 'header',
- iconCls:'x-fa fa-navicon',
- id: 'main-navigation-btn',
- handler: 'onToggleNavigationSize'
- },
- '->',
- {
- iconCls:'x-fa fa-search',
- ui: 'header',
- tooltip: 'See latest search'
- },
- {
- iconCls:'x-fa fa-bell',
- ui: 'header',
- tooltip: 'Check your messages'
- },
- {
- iconCls:'x-fa fa-question',
- ui: 'header',
- tooltip: 'Help / FAQ\'s'
- },
- {
- iconCls:'x-fa fa-th-large',
- ui: 'header',
- tooltip: 'See your profile'
- },
- {
- xtype: 'tbtext',
- text: 'administrator',
- cls: 'top-user-name'
- },
- {
- xtype: 'image',
- cls: 'header-right-profile-image',
- height: 35,
- width: 35,
- alt:'current user image',
- src: 'resources/images/default/user-profile-default.png'
- }
- ]
- },
- {
- xtype: 'maincontainerwrap'
- }
- ]
- });
|