Endfeedback.js 363 B

123456789101112131415
  1. Ext.define('erp.view.core.button.Endfeedback',{
  2. extend: 'Ext.Button',
  3. alias: 'widget.erpEndfeedbackButton',
  4. text: "结束问题",
  5. iconCls: 'x-button-icon-close',
  6. id:'erpEndfeedbackButton',
  7. cls: 'x-btn-gray',
  8. width: 100,
  9. style: {
  10. marginLeft: '10px'
  11. },
  12. initComponent : function(){
  13. this.callParent(arguments);
  14. }
  15. });