版本变更V3.29体验优化

This commit is contained in:
dxc
2026-05-20 09:09:33 +08:00
parent 6d044b234c
commit 621431dcb9
4 changed files with 62 additions and 26 deletions

View File

@ -189,7 +189,8 @@ const handleLogout = () => {
.then(async () => {
userStore.logout()
ElMessage({ type: 'success', message: '已安全退出' })
await router.replace('/login')
// 直接原生跳转,重置一切
window.location.href = '/login'
})
.catch(() => {})
}
@ -234,7 +235,7 @@ const handleLogout = () => {
<footer v-if="!isLoginPage" class="app-footer">
<span class="version-tag">
<el-icon style="vertical-align: middle; margin-right: 4px"><InfoFilled /></el-icon>
当前版本:V3.26添加AI助手版
当前版本:V3.29添加AI助手版
</span>
</footer>