RemoveUUId.js 443 B

123456789101112131415161718
  1. /**
  2. * 解除物料对应平台料号匹配关系
  3. */
  4. Ext.define('erp.view.core.button.RemoveUUId',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpRemoveUUIdButton',
  7. iconCls: 'x-button-icon-delete',
  8. cls: 'x-btn-gray',
  9. id:'removeuuid',
  10. text: $I18N.common.button.erpRemoveUUIdButton,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. width: 120,
  15. initComponent : function(){
  16. this.callParent(arguments);
  17. }
  18. });