VastOccur.js 407 B

12345678910111213141516
  1. /**
  2. * 批量生成按钮
  3. */
  4. Ext.define('erp.view.core.button.VastOccur',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpVastOccurButton',
  7. text: $I18N.common.button.erpVastOccurButton,
  8. tooltip: '可以生成多条记录',
  9. iconCls: 'x-button-icon-check',
  10. cls: 'x-btn-gray',
  11. id: 'erpVastOccurButton',
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. },
  15. width: 90
  16. });