12345678910111213141516 |
- /**
- * 制造单批量暂停
- */
- Ext.define('erp.view.core.button.VastMakeStop',{
- extend: 'Ext.Button',
- alias: 'widget.erpVastMakeStopButton',
- text: $I18N.common.button.erpVastMakeStopButton,
- tooltip: '批量暂停',
- iconCls: 'x-button-icon-save',
- cls: 'x-btn-gray',
- id: 'erpVastMakeStopButton',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 90
- });
|