From f9df4c3f02b95e26d8b0c0a5a74c106c87ca25e5 Mon Sep 17 00:00:00 2001 From: zoujing Date: Thu, 23 Oct 2025 21:14:28 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=89=93=E5=AD=97=E9=80=9F=E5=BA=A6?= =?UTF-8?q?=E6=8F=90=E5=8D=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/index/components/chat/ChatMainList/index.vue | 2 +- src/utils/TypewriterManager.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/index/components/chat/ChatMainList/index.vue b/src/pages/index/components/chat/ChatMainList/index.vue index c2ccef4..91995ee 100644 --- a/src/pages/index/components/chat/ChatMainList/index.vue +++ b/src/pages/index/components/chat/ChatMainList/index.vue @@ -540,7 +540,7 @@ const initTypewriterManager = () => { } typewriterManager = new TypewriterManager({ - typingSpeed: 30, + typingSpeed: 10, cursorText: "", }); diff --git a/src/utils/TypewriterManager.js b/src/utils/TypewriterManager.js index b183a50..9d80676 100644 --- a/src/utils/TypewriterManager.js +++ b/src/utils/TypewriterManager.js @@ -6,7 +6,7 @@ class TypewriterManager { constructor(options = {}) { // 配置选项 this.options = { - typingSpeed: 50, // 打字速度(毫秒) + typingSpeed: 10, // 打字速度(毫秒)- 调整为更快的速度 cursorText: "", // 光标样式 ...options, };