|
@@ -375,7 +375,7 @@ const addSystemReply = (type = "system", textObject, callback) => {
|
|
|
scrollToBottom();
|
|
|
callback && callback(); // 回复完成后解锁输入
|
|
|
}
|
|
|
- }, 5);
|
|
|
+ }, 50);
|
|
|
} else {
|
|
|
callback && callback(); // 如果 content 为空,直接解锁输入
|
|
|
}
|
|
@@ -394,7 +394,7 @@ const addSystemReply = (type = "system", textObject, callback) => {
|
|
|
clearInterval(headerInterval);
|
|
|
showContent();
|
|
|
}
|
|
|
- }, 5); // 50ms 逐字显示 header
|
|
|
+ }, 50); // 50ms 逐字显示 header
|
|
|
} else {
|
|
|
showContent();
|
|
|
}
|