VastDeal.js 362 B

123456789101112131415
  1. /**
  2. * 批量处理按钮
  3. */
  4. Ext.define('erp.view.core.button.VastDeal',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastDealButton',
  7. text: $I18N.common.button.erpVastDealButton,
  8. iconCls: 'x-button-icon-check',
  9. cls: 'x-btn-gray',
  10. id: 'erpVastDealButton',
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. },
  14. width: 110
  15. });