VastMakeResStop.js 433 B

12345678910111213141516
  1. /**
  2. * 制造单批量取消暂停
  3. */
  4. Ext.define('erp.view.core.button.VastMakeResStop',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastMakeResStopButton',
  7. text: $I18N.common.button.erpVastMakeResStopButton,
  8. tooltip: '批量取消暂停',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpVastMakeResStopButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 120
  16. });