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: "" + $I18N.common.main.activeUser + "" + username + "(" + em_name + ")" + "" },'-','账套:',{ xtype: 'tbtext', name: 'sob', text: '' + sobText + '' },'->',{ cls: 'process-lazy', xtype: 'tbtext', id: 'process-lazy', text: '' },{ xtype: 'tbtext', text: "售后电话:400-830-1818  ", },{ xtype: 'tbtext', text: "售后邮箱:info@usoftchina.com  ", },{ xtype:'tbtext', html:'联系我们' }] }); this.callParent(arguments); }, update: function(obj) { if (obj) { var s = this.down('tbtext[name=sob]'); s.setText('' + obj.sob + ''); } } });