TurnRepairWork.js 480 B

12345678910111213141516171819
  1. /**
  2. * 转维修单
  3. * @author yingp
  4. * @date 2012-08-03 10:45:49
  5. */
  6. Ext.define('erp.view.core.button.TurnRepairWork',{
  7. extend: 'Ext.Button',
  8. alias: 'widget.erpTurnRepairWorkButton',
  9. iconCls: 'x-button-icon-delete',
  10. cls: 'x-btn-gray',
  11. tooltip: '转维修单',
  12. id: 'erpTurnRepairWorkButton',
  13. formBind: true,
  14. text: $I18N.common.button.erpTurnRepairWorkButton,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. },
  18. width: 120
  19. });