| 12345678910111213141516171819202122232425262728293031 |
- /**
- * Created by zhouy on 2018/10/18.
- */
- Ext.define('saas.view.document.other.BankInformation', {
- extend: 'saas.view.document.kind.Kind',
- xtype: 'other-bankinformation',
- autoScroll: true,
- layout:'fit',
- caller:'BankInformation',
- defaultType:'bankinformation',
- tbar: ['->',{
- xtype:'button',
- text:'新增',
- listeners: {
- click: 'onAdd'
- }
- },{
- xtype:'button',
- text:'刷新',
- listeners: {
- click: 'onRefresh'
- }
- }],
- listeners:{
- afterrender:function(p){
- p.getViewModel().setData({title:'资金账户'});
- }
- }
- })
|