AccountInformation.js 534 B

123456789101112131415161718192021222324
  1. /**
  2. * Created by zhouy on 2018/10/18.
  3. */
  4. Ext.define('saas.view.sys.account.AccountInformation', {
  5. extend: 'saas.view.document.kind.Kind',
  6. xtype: 'sys-account-accountinformation',
  7. autoScroll: true,
  8. layout:'fit',
  9. defaultType:'accountinformation',
  10. tbar: ['->',{
  11. xtype:'button',
  12. text:'刷新',
  13. listeners: {
  14. click: 'onRefresh'
  15. }
  16. }],
  17. listeners:{
  18. afterrender:function(p){
  19. p.getViewModel().setData({title:'账户信息'});
  20. }
  21. }
  22. })