ResSubmitApproves.js 432 B

1234567891011121314151617
  1. /**
  2. * 反提交按钮
  3. */
  4. Ext.define('erp.view.core.button.ResSubmitApproves',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpResSubmitApprovesButton',
  7. iconCls: 'x-button-icon-delete',
  8. cls: 'x-btn-gray',
  9. id: 'resSubmitApproves',
  10. text: $I18N.common.button.erpResSubmitApprovesButton,
  11. //text:'反提交(批准)',
  12. width: 120,
  13. initComponent : function(){
  14. this.callParent(arguments);
  15. }
  16. });