From b87f381e85a1bb2048faa8abce7bd2e38f946e53 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Wed, 3 Dec 2025 09:52:43 +0800 Subject: [PATCH] fix(Appearance Settings): The default welcome message and chat page are inconsistent. --- frontend/src/views/chat/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/chat/index.vue b/frontend/src/views/chat/index.vue index faecc55d3..e5f924cef 100644 --- a/frontend/src/views/chat/index.vue +++ b/frontend/src/views/chat/index.vue @@ -120,10 +120,13 @@ > - {{ appearanceStore.pc_welcome ?? t('qa.greeting') }} + {{ appearanceStore.pc_welcome ?? '你好,我是 SQLBot' }}
- {{ appearanceStore.pc_welcome_desc ?? t('qa.hint_description') }} + {{ + appearanceStore.pc_welcome_desc ?? + '我可以查询数据、生成图表、检测数据异常、预测数据等赶快开启智能问数吧~' + }}