BankInformation.js 507 B

12345678910111213141516171819202122232425
  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. })