1234567891011121314151617 |
- Ext.define('erp.view.sys.Header', {
- extend: 'Ext.container.Viewport',
- extend: 'Ext.Toolbar',
- xtype : 'pageHeader',
- height: 53,
- hideBorders: true,
- ui : 'sencha',
- items: [{
- xtype: 'component',
- cls : 'x-logo',
- html : 'UAS系统初始化',
- hideBorders: true
- },{
- style:'top:0px!important;margin-left:20px !important',
- xtype:'processview'
- }]
- });
|