ResSubmitNonstandard.js 367 B

1234567891011121314
  1. Ext.define('erp.view.core.button.ResSubmitNoStandard',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpResSubmitNoStandardButton',
  4. iconCls: 'x-button-icon-submit',
  5. cls: 'x-btn-gray',
  6. text: '反提交(转非标准)',
  7. style: {
  8. marginLeft: '10px'
  9. },
  10. width:120,
  11. initComponent : function(){
  12. this.callParent(arguments);
  13. }
  14. });