CatchData.js 394 B

12345678910111213141516171819
  1. /**
  2. * 获取数据
  3. */
  4. Ext.define('erp.view.core.button.CatchData', {
  5. extend : 'Ext.Button',
  6. alias : 'widget.erpCatchDataButton',
  7. param : [],
  8. id : 'erpCatchDataButton',
  9. text : $I18N.common.button.erpCatchDataButton,
  10. iconCls : 'x-button-icon-reset',
  11. cls : 'x-btn-gray',
  12. width : 100,
  13. style : {
  14. marginLeft : '10px'
  15. },
  16. initComponent : function() {
  17. this.callParent(arguments);
  18. }
  19. });