Distribute.js 368 B

123456789101112131415
  1. /**
  2. * 分配权限按钮
  3. */
  4. Ext.define('erp.view.core.button.Distribute',{
  5. extend: 'Ext.Button',
  6. alias: 'widget.erpDistributeButton',
  7. iconCls: 'x-button-icon-power',
  8. cls: 'x-btn-gray-1',
  9. id: 'distribute',
  10. text: $I18N.common.button.erpDistributeButton,
  11. width: 90,
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });