Commit 4ea4d164 by chongli

修复小程上切换微信绑定手机号显示异常

parent 56d0c0c3
......@@ -1638,9 +1638,9 @@ public class UserService {
* 当前uid大多数等于bindedmobilePhone,新增加的社员都是uid等于手机号码, 所以更改优先使用手机号码查询用户信息
*/
public UserBean getUserDetail(UserQuery userQuery) {
UserExt userExt = this.userExtDao.GetUserExtInfoByPhone(userQuery.getUid());
UserExt userExt = this.userExtDao.getUserExtInfoByUid(userQuery.getUid());
if (userExt == null) {
userExt = this.userExtDao.getUserExtInfoByUid(userQuery.getUid());
userExt = this.userExtDao.GetUserExtInfoByPhone(userQuery.getUid());
}
if (userExt == null) {
return null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment