|
@@ -822,7 +822,10 @@ public class AppUserService extends ServiceImpl<AppUserMapper, AppUser> implemen
|
|
|
}
|
|
|
PurchaserDto purchaserDto= FeignFactory.levelTwoServerInterface.getByPurchaserId(appUser.getFkId());
|
|
|
if (purchaserDto==null){
|
|
|
- return AjaxJson.getError("商户不存在");
|
|
|
+ return AjaxJson.getError("商户不存在或未认证");
|
|
|
+ }
|
|
|
+ if (purchaserDto.getJudgeStatus()==0){
|
|
|
+ return AjaxJson.getError("商户未审核");
|
|
|
}
|
|
|
//开始执行登录
|
|
|
StpAPPUserUtil.login(appUser.getId());
|