fix: 🧩 修改bug

This commit is contained in:
2025-10-10 11:28:56 +08:00
parent 2837efee97
commit efee846973
9 changed files with 64 additions and 48 deletions

View File

@@ -2,7 +2,7 @@
<!-- 公司名 -->
<div class="name-box font12" style="padding-top: 2px">
<span style="margin-right: 10px; margin-left: 10px">
{{ userStore.userInfo.corp.corp_name ? userStore.userInfo.corp.corp_name : "" }}
{{ userStore?.userInfo?.corp?.corp_name ? userStore?.userInfo?.corp?.corp_name : "" }}
</span>
</div>
@@ -10,7 +10,7 @@
<div class="name-box font12">
<el-dropdown trigger="click" class="triangle-box">
<div>
{{ userStore.userInfo.nickname }}
{{ userStore?.userInfo?.nickname }}
<el-icon class="triangle">
<i-ep-arrow-down />
</el-icon>
@@ -41,15 +41,12 @@ const logout = () => {
cancelButtonText: "取消",
type: "warning"
}).then(async () => {
//1.退出登录
const result: any = await logoutApi();
if (result?.code === 0) {
userStore.$reset();
//清除本地
localStorage.clear();
location.href = usePathUrl();
setTimeout(() => {
userStore.$reset();
//清除本地
localStorage.clear();
}, 300);
}
});
};