From 3affb8887f5eff7d3c12f919aac7fe57da3a0f03 Mon Sep 17 00:00:00 2001 From: dengzedong <dengzedong@email> Date: 星期六, 18 一月 2025 11:57:26 +0800 Subject: [PATCH] 计算预测项 表达式数据异常判定bug --- src/layout/components/UserInfo/src/UserInfo.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layout/components/UserInfo/src/UserInfo.vue b/src/layout/components/UserInfo/src/UserInfo.vue index 797fb87..714a088 100644 --- a/src/layout/components/UserInfo/src/UserInfo.vue +++ b/src/layout/components/UserInfo/src/UserInfo.vue @@ -23,7 +23,7 @@ const prefixCls = getPrefixCls('user-info') -const avatar = computed(() => userStore.user.avatar ?? avatarImg) +const avatar = computed(() => userStore.user.avatar || avatarImg) const userName = computed(() => userStore.user.nickname ?? 'Admin') // 锁定屏幕 @@ -43,14 +43,14 @@ }) await userStore.loginOut() tagsViewStore.delAllViews() - replace('/login?redirect=/index') + await replace('/login?redirect=/index') } catch {} } const toProfile = async () => { push('/user/profile') } const toDocument = () => { - window.open('https://xxxx/') + window.open('https://doc.iailab.cn/') } </script> -- Gitblit v1.9.3