GetUUId.js 432 B

12345678910111213141516171819
  1. /**
  2. * 根据原厂的型号自动匹配标准料号
  3. */
  4. Ext.define('erp.view.core.button.GetUUId',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpGetUUIdButton',
  7. iconCls : 'x-button-icon-submit',
  8. cls : 'x-btn-gray',
  9. id: 'getuuid',
  10. text: $I18N.common.button.erpGetUUIdButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width:100,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });