CancelSK.js 412 B

1234567891011121314151617
  1. // 取消收款按钮
  2. Ext.define('erp.view.core.button.CancelSK',{
  3. extend: 'Ext.Button',
  4. alias: 'widget.erpCancelSKButton',
  5. param: [],
  6. id: 'erpCancelSKButton',
  7. text: $I18N.common.button.erpCancelSKButton,
  8. iconCls: 'x-button-icon-save',
  9. cls: 'x-btn-gray',
  10. width: 100,
  11. style: {
  12. marginLeft: '10px'
  13. },
  14. initComponent : function(){
  15. this.callParent(arguments);
  16. }
  17. });