KpiSaveComment.js 420 B

12345678910111213141516171819
  1. /**
  2. * 收藏评语
  3. */
  4. Ext.define('erp.view.core.button.KpiSaveComment',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpKPiSaveComment',
  7. param: [],
  8. id: 'erpKPiSaveComment',
  9. text: $I18N.common.button.erpKPiSaveComment,
  10. iconCls: 'x-button-icon-save',
  11. cls: 'x-btn-gray',
  12. width: 100,
  13. style: {
  14. marginLeft: '10px'
  15. },
  16. initComponent : function(){
  17. this.callParent(arguments);
  18. }
  19. });