VastMakeClose.js 389 B

123456789101112131415
  1. /**
  2. * 制造单批量关闭
  3. */
  4. Ext.define('erp.view.core.button.VastMakeClose',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastMakeCloseButton',
  7. text: $I18N.common.button.erpVastMakeCloseButton,
  8. iconCls: 'x-button-icon-submit',
  9. cls: 'x-btn-gray',
  10. width: 110,
  11. id: 'erpVastMakeCloseButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });