|
@@ -64,10 +64,11 @@ public class LoginController extends BaseController {
|
|
|
if(ObjectUtil.isNotNull(fdkkLoginVo.getData().getPlatformKeys())&&
|
|
|
CollectionUtil.isNotEmpty(fdkkLoginVo.getData().getPlatformKeys())){
|
|
|
if (!fdkkLoginVo.getData().getPlatformKeys().contains("smart-site")){
|
|
|
- throw new BusinessException(ResultCode.NOT_PLATFORM_KEY);
|
|
|
+ return ResultData.error(ResultCode.NOT_PLATFORM_KEY);
|
|
|
}
|
|
|
}else {
|
|
|
- throw new BusinessException(ResultCode.NOT_PLATFORM_KEY);
|
|
|
+ return ResultData.error(ResultCode.NOT_PLATFORM_KEY);
|
|
|
+
|
|
|
}
|
|
|
SaLoginModel saLoginModel = new SaLoginModel();
|
|
|
saLoginModel
|