FormPanelController.js 449 B

123456789101112131415161718
  1. Ext.define('saas.view.sys.feedback.FormPanelController', {
  2. extend: 'Ext.app.ViewController',
  3. alias: 'controller.sys-feedback-formpanel',
  4. init: function (form) {
  5. var me = this;
  6. this.control({
  7. });
  8. },
  9. onSubmit:function(){
  10. console.log("提交成功!");
  11. showToast('提交成功!');
  12. this.close();
  13. this.destory();
  14. },
  15. onClose:function(){
  16. this.close();
  17. }
  18. });