VastGet.js 448 B

1234567891011121314151617181920
  1. /**
  2. * 确认领取按钮
  3. */
  4. Ext.define('erp.view.core.button.VastGet',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastGetButton',
  7. iconCls: 'x-button-icon-Get',
  8. cls: 'x-btn-gray-1',
  9. id: 'get',
  10. tooltip: '确认领取多条记录',
  11. id: 'erpVastGetButton',
  12. text: $I18N.common.button.erpVastGetButton,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. },
  16. width: 110,
  17. handler: function(){
  18. }
  19. });