1234567891011121314151617181920212223242526272829303132 |
- Ext.define('erp.view.oa.doc.Header', {
- extend: 'Ext.container.Viewport',
- extend: 'Ext.Toolbar',
- xtype : 'pageHeader',
- ui : 'sencha',
- height: 53,
- hideBorders: true,
- items: [{
- xtype: 'component',
- cls : 'x-logo',
- html : 'UAS文档管理',
- hideBorders: true,
- },{
- xtype:'tbtext',
- cls:'topMenu-2',
- style:'padding: 25px 10px 0px 100px;font-size:15px;font-weight: 600;',
- text:'欢迎 ,'+em_name+"!"
- },{
- xtype:'tbtext',
- style:'padding: 25px 0px 0px 100px;font-size:15px;font-weight: 800;',
- text:'当前位置:'
- },{
- xtype:'tbtext',
- style:'padding:25px 10px 0px 5px;font-size:15px;font-weight:600;',
- id:'virtualpath'
- }/*,'->',{
- xtype:'container',
- style:'padding:25px 10px 0px 500px;font-size:15px;font-weight:600;',
- html:'<div id="searchBox"><form id="searchDoc" name="searchDoc" onsubmit="search(); return false" action="/search/search.html" method="post"><input type="text" name="keywords" value="" id="keywords" class="inputTextNormal"> <input id="searchBtn" type="image" src="../doc/resources/images/btn-search.jpg" value="搜索文档"></form> </div>'
- }*/
- ]
- });
|