From 823287b054ecbd9807b02719f4ce40793c5091b8 Mon Sep 17 00:00:00 2001 From: "zhang.weiwei" <578974917@qq.com> Date: Fri, 21 Mar 2025 16:46:42 +0800 Subject: [PATCH] =?UTF-8?q?feat-=E5=BD=93=E4=BC=8A=E8=B0=83=E7=A0=94?= =?UTF-8?q?=E8=B7=AF=E7=94=B1=E6=96=B0=E5=A2=9E=E6=8E=A7=E5=88=B6AI=20?= =?UTF-8?q?=E6=99=BA=E8=83=BD=E5=88=9B=E5=BB=BA=E5=8A=A9=E6=89=8B=E5=BC=B9?= =?UTF-8?q?=E6=A1=86=E6=98=AF=E5=90=A6=E6=98=BE=E7=A4=BA=E7=9A=84=E5=8F=82?= =?UTF-8?q?=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ProjectManage/create/Index.vue | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/views/ProjectManage/create/Index.vue b/src/views/ProjectManage/create/Index.vue index 6a0bdf3a..c437d9d3 100644 --- a/src/views/ProjectManage/create/Index.vue +++ b/src/views/ProjectManage/create/Index.vue @@ -362,6 +362,15 @@ function calculateCount() { } onMounted(() => { + /** add by zhangweiwei 20250331_ai 智能创建助手 start */ + // 从路由参数重获取 showModal 参数的值,判断是否显示弹窗 + const { showModal } = router.currentRoute.value.query; + if (showModal && showModal === 'aiAssistant') { + // 显示智能创建助手弹框 + aiAssistantVisible.value = true; + } + /** add by zhangweiwei 20250331_ai 智能创建助手 end */ + window.addEventListener('resize', calculateCount, false); // document.addEventListener('click', listenClickEvent, false); calculateCount();