fix(portal): 禁用消息组件中的打字机效果

- 注释掉了启动打字机效果的函数调用
- 直接设置显示文本以避免延迟
This commit is contained in:
陈昱达
2025-10-14 15:43:36 +08:00
committed by joshen
parent 83bda2e8a5
commit ee43ea7b0c

View File

@@ -127,7 +127,7 @@ export default {
}
if (this.messageData.isBot && !this.messageData.typing) {
this.startTyping(newVal); // 启动打字机效果
// this.startTyping(newVal); // 启动打字机效果/**/
this.displayText = newVal || ''
} else {