MakeSNCode.js 410 B

12345678910111213141516
  1. /**
  2. * 制造单号段维护
  3. */
  4. Ext.define('erp.view.core.button.MakeSNCode',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpMakeSNCodeButton',
  7. text: $I18N.common.button.erpMakeSNCodeButton,
  8. tooltip: '序列号清单导入',
  9. iconCls: 'x-button-icon-save',
  10. cls: 'x-btn-gray',
  11. id: 'erpMakeSNCodeButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 125
  16. });