Ext.define('saas.view.sys.feedback.FormPanel', { extend: 'Ext.panel.Panel', xtype: 'sys-feedback-formpanel', controller: 'sys-feedback-formpanel', viewModel: 'sys-feedback-formpanel', viewName: 'sys-feedback-formpanel', caller:'feedBack', layout: 'column', autoScroll: true, fieldDefaults: { margin: '0 0 10 0', labelAlign: 'right', labelWidth: 90, columnWidth: 0.25, }, bodyPadding: 10, border: false, items: [{ xtype: 'hidden', name: 'id', fieldLabel: 'id', readOnly:true, defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().id:null }, { xtype : "textfield", name : "fb_name", fieldLabel : "姓名", readOnly:true, defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().realname:null }, { xtype : "textfield", name : "fb_mobile", fieldLabel : "手机号", defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().mobile:null }, { xtype : "textfield", name : "fb_QQ", fieldLabel : "QQ" }, { xtype : "textfield", name : "fb_wechat", fieldLabel : "微信" }, { xtype : "html", name : "fb_msg", fieldLabel : "反馈内容", flex: 1 }],buttons: [{ text: '提交', handler:'onSubmit' },{ text: '关闭', handler:'onClose' }] });