From 9b41330413ad1617a39baf7f6243a4686e999456 Mon Sep 17 00:00:00 2001 From: kuaifan Date: Thu, 11 Jun 2026 03:44:16 +0000 Subject: [PATCH] =?UTF-8?q?fix(ai-assistant):=20=E6=B7=B1=E9=93=BE?= =?UTF-8?q?=E7=82=B9=E5=87=BB=E4=BB=85=E7=A7=BB=E5=8A=A8=E7=AB=AF=E6=94=B6?= =?UTF-8?q?=E8=B5=B7=E6=B5=AE=E7=AA=97=EF=BC=8C=E6=A1=8C=E9=9D=A2=E7=AB=AF?= =?UTF-8?q?=E4=BF=9D=E7=95=99=E5=AF=B9=E8=AF=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 桌面端 AI 浮窗为侧栏不遮挡页面,点深链后应保留以便继续对话; 仅移动端全屏浮窗会遮挡目标页,需收起。按 windowPortrait 区分。 Co-Authored-By: Claude Opus 4.8 --- .../assets/js/pages/manage/components/DialogMarkdown.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/resources/assets/js/pages/manage/components/DialogMarkdown.vue b/resources/assets/js/pages/manage/components/DialogMarkdown.vue index 4576e8277..7ba49cbb0 100644 --- a/resources/assets/js/pages/manage/components/DialogMarkdown.vue +++ b/resources/assets/js/pages/manage/components/DialogMarkdown.vue @@ -175,7 +175,10 @@ export default { if (!match || !isDeepLinkId(match[1])) { return; } - this.beforeNavigate?.(); + // 移动端浮窗全屏会遮挡目标页,需收起;桌面端为侧浮窗,保留以便继续对话 + if (this.$store.state.windowPortrait) { + this.beforeNavigate?.(); + } openDeepLink(match[1]); },