Merge branch 'uat-单点跳询价' into 'uat'

单点登录接口

See merge request eshop/biz_service_ebtp_extend!89
This commit is contained in:
张芹彬
2022-06-17 11:29:22 +08:00

View File

@ -59,10 +59,10 @@ public class SinglePointController {
@RequestParam(name = "page", required = false) String page) { @RequestParam(name = "page", required = false) String page) {
String uid = userId; String uid = userId;
if(userService.getCacheUser()!=null&& // if(userService.getCacheUser()!=null&&
userService.getCacheUser().getUserId()!=null){ // userService.getCacheUser().getUserId()!=null){
uid = userService.getCacheUser().getUserId(); // uid = userService.getCacheUser().getUserId();
} // }
String encodeUrl = singlePointService.generateEncodeUrl(uid,page); String encodeUrl = singlePointService.generateEncodeUrl(uid,page);
return BaseResponse.success(encodeUrl); return BaseResponse.success(encodeUrl);