BankInformation.js 665 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * Created by zhouy on 2018/10/18.
  3. */
  4. Ext.define('saas.view.document.other.BankInformation', {
  5. extend: 'saas.view.document.kind.Kind',
  6. xtype: 'other-bankinformation',
  7. autoScroll: true,
  8. layout:'fit',
  9. caller:'BankInformation',
  10. defaultType:'bankinformation',
  11. tbar: ['->',{
  12. xtype:'button',
  13. text:'新增',
  14. listeners: {
  15. click: 'onAdd'
  16. }
  17. },{
  18. xtype:'button',
  19. text:'刷新',
  20. listeners: {
  21. click: 'onRefresh'
  22. }
  23. }],
  24. listeners:{
  25. afterrender:function(p){
  26. p.getViewModel().setData({title:'资金账户'});
  27. }
  28. }
  29. })