UpdateYC.js 432 B

1234567891011121314151617
  1. /* 修改按钮---宇辰售后记录用
  2. */
  3. Ext.define('erp.view.core.button.UpdateYC',{
  4. extend: 'Ext.Button',
  5. alias: 'widget.erpUpdateYCButton',
  6. iconCls: 'x-button-icon-submit',
  7. cls: 'x-btn-gray',
  8. text: $I18N.common.button.erpUpdateYCButton,
  9. id:'updateycbutton',
  10. style: {
  11. marginLeft: '10px'
  12. },
  13. width: 110,
  14. initComponent : function(){
  15. this.callParent(arguments);
  16. }
  17. });