StoreInformation.js 568 B

12345678910111213141516171819202122
  1. Ext.define('saas.view.document.other.StoreInformation', {
  2. extend: 'saas.view.document.kind.Kind',
  3. xtype: 'other-storeinformation',
  4. autoScroll: true,
  5. layout:'fit',
  6. defaultType:'storeinformation',
  7. _openUrl:basePath + 'document/warehouse/open',
  8. _closeUrl:basePath + 'document/warehouse/close',
  9. tbar: ['->',{
  10. xtype:'button',
  11. text:'新增',
  12. listeners: {
  13. click: 'onAdd'
  14. }
  15. },{
  16. xtype:'button',
  17. text:'刷新',
  18. listeners: {
  19. click: 'onRefresh'
  20. }
  21. }]
  22. })