| 123456789101112131415161718 |
- Ext.define('saas.view.sys.feedback.FormPanelController', {
- extend: 'Ext.app.ViewController',
- alias: 'controller.sys-feedback-formpanel',
- init: function (form) {
- var me = this;
- this.control({
- });
- },
- onSubmit:function(){
- console.log("提交成功!");
- showToast('提交成功!');
- this.close();
- this.destory();
- },
- onClose:function(){
- this.close();
- }
- });
|