| 12345678910111213141516171819202122 |
- Ext.define('saas.view.document.other.StoreInformation', {
- extend: 'saas.view.document.kind.Kind',
- xtype: 'other-storeinformation',
- autoScroll: true,
- layout:'fit',
- defaultType:'storeinformation',
- _openUrl:basePath + 'document/warehouse/open',
- _closeUrl:basePath + 'document/warehouse/close',
- tbar: ['->',{
- xtype:'button',
- text:'新增',
- listeners: {
- click: 'onAdd'
- }
- },{
- xtype:'button',
- text:'刷新',
- listeners: {
- click: 'onRefresh'
- }
- }]
- })
|