1234567891011121314151617 |
- /**
- * 更新工单途程
- */
- Ext.define('erp.view.core.button.UpdateMaCraft',{
- extend: 'Ext.Button',
- alias: 'widget.erpUpdateMaCraftButton',
- iconCls: 'x-button-icon-submit',
- cls: 'x-btn-gray',
- tooltip: '更新途程',
- id: 'erpUpdateMaCraftButton',
- formBind: true,
- text: '更新途程',
- initComponent : function(){
- this.callParent(arguments);
- },
- width: 120
- });
|