|
|
@@ -25,18 +25,18 @@ Ext.define('saas.view.sys.feedback.FormPanel', {
|
|
|
name: 'id',
|
|
|
fieldLabel: 'id',
|
|
|
readOnly:true,
|
|
|
- defaultVale:saas.util.BaseUtil.getCurrentUser().id
|
|
|
+ defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().id:null
|
|
|
}, {
|
|
|
xtype : "textfield",
|
|
|
name : "fb_name",
|
|
|
fieldLabel : "姓名",
|
|
|
readOnly:true,
|
|
|
- defaultVale:saas.util.BaseUtil.getCurrentUser().realname
|
|
|
+ defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().realname:null
|
|
|
}, {
|
|
|
xtype : "textfield",
|
|
|
name : "fb_mobile",
|
|
|
fieldLabel : "手机号",
|
|
|
- defaultVale:saas.util.BaseUtil.getCurrentUser().mobile
|
|
|
+ defaultVale:saas.util.BaseUtil.getCurrentUser() ? saas.util.BaseUtil.getCurrentUser().mobile:null
|
|
|
}, {
|
|
|
xtype : "textfield",
|
|
|
name : "fb_QQ",
|