SubmitApproves.js 422 B

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