DecomSetting.js 415 B

12345678910111213141516
  1. /**
  2. * 拆解部件设定按钮
  3. */
  4. Ext.define('erp.view.core.button.DecomSetting',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpDecomSettingButton',
  7. text: $I18N.common.button.erpDecomSettingButton,
  8. tooltip: '序列号范围',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpDecomSettingButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 125
  16. });