/** * Created by zhouy on 2018/10/18. */ Ext.define('saas.view.sys.account.AccountInformation', { extend: 'saas.view.document.kind.Kind', xtype: 'sys-account-accountinformation', autoScroll: true, layout:'fit', defaultType:'accountinformation', tbar: ['->',{ xtype:'button', text:'刷新', listeners: { click: 'onRefresh' } }], listeners:{ afterrender:function(p){ p.getViewModel().setData({title:'账户信息'}); } } })