ResAbate.js 410 B

12345678910111213141516171819
  1. /**
  2. * 转有效
  3. */
  4. Ext.define('erp.view.core.button.ResAbate',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpResAbateButton',
  7. param: [],
  8. id: 'erpResAbateButton',
  9. text: $I18N.common.button.erpResAbateButton,
  10. iconCls: 'x-button-icon-save',
  11. cls: 'x-btn-gray',
  12. width: 70,
  13. style: {
  14. marginLeft: '10px'
  15. },
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });