修改BUG:前面提交的框架更改使保存当前用户信息后右上角显示名称不同步
This commit is contained in:
parent
5a642e6727
commit
ae0be5afb1
|
@ -6,7 +6,8 @@
|
|||
ID: "userID",
|
||||
UserName: "userName",
|
||||
Password: "password",
|
||||
DisplayName: "displayName"
|
||||
DisplayName: "displayName",
|
||||
NewPassword: "confirm"
|
||||
}
|
||||
}),
|
||||
click: {
|
||||
|
@ -48,9 +49,9 @@
|
|||
}
|
||||
}]
|
||||
},
|
||||
success: function (src, data) {
|
||||
if (src === 'save' && data.ID === $('#userId').val()) {
|
||||
$('#userDisplayName').text(data.DisplayName);
|
||||
callback: function (data) {
|
||||
if (data && data.success && data.oper === 'save' && data.data.ID === $('#userId').val()) {
|
||||
$('#userDisplayName').text(data.data.DisplayName);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue