feat: 优化 UI 逻辑适配移动端

This commit is contained in:
alger
2026-02-06 12:50:58 +08:00
parent fab29e5c79
commit 292751643f
17 changed files with 1003 additions and 986 deletions
+5 -1
View File
@@ -212,7 +212,11 @@ const { zoomFactor, initZoomFactor, increaseZoom, decreaseZoom, resetZoom, isZoo
// 显示返回按钮
const showBackButton = computed(() => {
return router.currentRoute.value.meta.back === true;
const meta = router.currentRoute.value.meta;
if (!settingsStore.isMobile && meta.isMobile === false) {
return false;
}
return meta.back === true;
});
// 返回上一页