|
@@ -39,7 +39,7 @@ class BootController extends BaseController {
|
|
|
|
|
|
|
|
// 判断是否已填写信息
|
|
// 判断是否已填写信息
|
|
|
let userData = await userModel.findDataByCondition({_id: sessionUser.id});
|
|
let userData = await userModel.findDataByCondition({_id: sessionUser.id});
|
|
|
- if (userData.company !== '' && userData.real_name !== '' && sessionCompilation !== undefined) {
|
|
|
|
|
|
|
+ if (userData.company !== '' && userData.real_name !== '') {
|
|
|
return response.redirect('/pm');
|
|
return response.redirect('/pm');
|
|
|
}
|
|
}
|
|
|
|
|
|