diff --git a/pages/home/case-home.vue b/pages/home/case-home.vue index a715296..365f90d 100644 --- a/pages/home/case-home.vue +++ b/pages/home/case-home.vue @@ -226,7 +226,8 @@ function getTeamId() { function hasCompleteUserInfo() { const userId = getUserId(); const corpId = String(account.value?.corpId || doctorInfo.value?.corpId || '') || ''; - return Boolean(corpId && userId); + const anotherName = String(doctorInfo.value?.anotherName || '').trim(); + return Boolean(corpId && userId && anotherName); } function ensureUserInfoForFeature() {