BankInformation.js 635 B

123456789101112131415161718192021222324252627282930
  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. defaultType:'bankinformation',
  10. tbar: ['->',{
  11. xtype:'button',
  12. text:'新增',
  13. listeners: {
  14. click: 'onAdd'
  15. }
  16. },{
  17. xtype:'button',
  18. text:'刷新',
  19. listeners: {
  20. click: 'onRefresh'
  21. }
  22. }],
  23. listeners:{
  24. afterrender:function(p){
  25. p.getViewModel().setData({title:'资金账户'});
  26. }
  27. }
  28. })