Skip to content

Commit 49da117

Browse files
committed
improvement(entry-ui): 优化检测与导入首屏流程
- 重构检测结果页布局,补充版本/账号/数据库统计与更清晰的加载态 - 首页移除直接解密入口,/import 页面隐藏侧边栏,统一首屏使用路径 - 导入页优化预览、错误和重试体验,并补充 SSE 连接清理逻辑
1 parent 0987167 commit 49da117

4 files changed

Lines changed: 378 additions & 275 deletions

File tree

frontend/app.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const showDesktopTitleBar = computed(() => isDesktop.value)
101101
102102
const showSidebar = computed(() => {
103103
const path = String(route.path || '')
104-
if (path === '/') return false
104+
if (path === '/' || path === '/import') return false
105105
if (path === '/decrypt' || path === '/detection-result' || path === '/decrypt-result') return false
106106
return !(path === '/wrapped' || path.startsWith('/wrapped/'))
107107
})

0 commit comments

Comments
 (0)