VastAnalyse.js 375 B

123456789101112131415
  1. /**
  2. * 缺料分析按钮
  3. */
  4. Ext.define('erp.view.core.button.VastAnalyse',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastAnalyseButton',
  7. text: $I18N.common.button.erpVastAnalyseButton,
  8. iconCls: 'x-button-icon-save',
  9. cls: 'x-btn-gray',
  10. width: 90,
  11. id: 'erpVastAnalyseButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });