123456789101112131415161718192021222324252627282930313233343536373839404142 |
- Ext.define('erp.view.common.main.Bottom',{
- extend: 'Ext.Toolbar',
- alias: 'widget.erpBottom',
- collapsible : true,
- initComponent : function(){
- Ext.apply(this, {
- id:"bottom",
- region:"south",
- height:25,
- items: [{
- iconCls: 'main-btn-user',
- cls: 'main-btn-left',
- text: "<font size='2' class='bottom_left'>" + $I18N.common.main.activeUser + "</font><a id='activeUser' style='color:blue;cursor:pointer;' class='bottom_left' >" + username + "(" + em_name + ")" + "</a>"
- },'-','账套:',{
- xtype: 'tbtext',
- name: 'sob',
- text: '<font color=blue>' + sobText + '</font>'
- },'->',{
- cls: 'process-lazy',
- xtype: 'tbtext',
- id: 'process-lazy',
- text: ''
- },{
- xtype: 'tbtext',
- text: "<font color=#4D4D4D size=2>售后电话:400-830-1818</font> ",
- },{
- xtype: 'tbtext',
- text: "<font color=#4D4D4D size=2>售后邮箱:info@usoftchina.com</font> ",
- },{
- xtype:'tbtext',
- html:'<a href="javascript:window.open(\'http://www.usoftchina.com\');"style=text-decoration:none>联系我们</a>'
- }]
- });
- this.callParent(arguments);
- },
- update: function(obj) {
- if (obj) {
- var s = this.down('tbtext[name=sob]');
- s.setText('<font color=blue>' + obj.sob + '</font>');
- }
- }
- });
|