fix(ai-assistant): 深链点击仅移动端收起浮窗,桌面端保留对话

桌面端 AI 浮窗为侧栏不遮挡页面,点深链后应保留以便继续对话;
仅移动端全屏浮窗会遮挡目标页,需收起。按 windowPortrait 区分。

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
kuaifan 2026-06-11 03:44:16 +00:00
parent 39b9a72b16
commit 9b41330413

View File

@ -175,7 +175,10 @@ export default {
if (!match || !isDeepLinkId(match[1])) {
return;
}
this.beforeNavigate?.();
// 便
if (this.$store.state.windowPortrait) {
this.beforeNavigate?.();
}
openDeepLink(match[1]);
},