From a574fb4826c90d30d233a4ae61829289d4691ce0 Mon Sep 17 00:00:00 2001 From: zhonghua Date: Tue, 14 Apr 2026 15:24:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E6=B7=BB=E5=8A=A0AI=E5=88=9B=E4=BD=9C?= =?UTF-8?q?=E6=B8=A9=E9=A6=A8=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/public/create/views/WelcomeView.vue | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lesingle-creation-frontend/src/views/public/create/views/WelcomeView.vue b/lesingle-creation-frontend/src/views/public/create/views/WelcomeView.vue index 4a9402a..ff21b05 100644 --- a/lesingle-creation-frontend/src/views/public/create/views/WelcomeView.vue +++ b/lesingle-creation-frontend/src/views/public/create/views/WelcomeView.vue @@ -141,6 +141,7 @@ import { RocketOutlined, StarOutlined, } from '@ant-design/icons-vue' +import { message } from "ant-design-vue" import { useAicreateStore } from '@/stores/aicreate' import { loadExtractDraft } from '@/utils/aicreate/extractDraft' import { resumeLeaiWorkFromApi } from '@/utils/aicreate/resumeLeaiWork' @@ -249,7 +250,10 @@ watch( const handleStart = () => { if (!store.sessionToken) return store.reset() - router.push('/p/create/upload') + message.warning('温馨提示:本次 AI 绘本创作体验功能,仅面向 “智创未来” 广东省 AI 绘本创作活动参与者开放,每个手机号可使用两次。'); + setTimeout(() => { + router.push('/p/create/upload') + }, 600); }