|
@@ -29,6 +29,7 @@ import me.chanjar.weixin.cp.bean.WxCpUser;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.beans.factory.annotation.Value;
|
|
|
import org.springframework.integration.redis.util.RedisLockRegistry;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
@@ -83,6 +84,9 @@ public class UserLogic {
|
|
|
@Autowired
|
|
|
AdminWebsitService adminWebsitService;
|
|
|
|
|
|
+ @Value("${wechat.sub.appid}")
|
|
|
+ private String wechatSubAppid;
|
|
|
+
|
|
|
/**
|
|
|
* 微信授权
|
|
|
*
|
|
@@ -354,7 +358,7 @@ public class UserLogic {
|
|
|
if (null == user) {
|
|
|
throw new RemoteServiceException("用户信息为空" + userId);
|
|
|
}
|
|
|
- WxMaService maService = wechatLogic.getMaService(currentCompanyWechat.getCompanyWechatId());
|
|
|
+ WxMaService maService = wechatLogic.getMaService(wechatSubAppid);
|
|
|
WxMaPhoneNumberInfo phoneNoInfo = maService.getUserService().getPhoneNoInfo(user.getSessionKey(), encryptedData, iv);
|
|
|
String mobile = phoneNoInfo.getPhoneNumber();
|
|
|
if(StringUtils.isEmpty(mobile)){
|