Commit f928e0c5 authored by nick zheng's avatar nick zheng

Merge branch 'beta' into 'master'

Beta

See merge request !163
parents ae612d86 7e3d333a
......@@ -278,7 +278,11 @@ function handleClearAllMessage() {
// 滚动页面
function handleMessageListScrollToBottom() {
if (modelDialogueListRef.value) {
modelDialogueListRef.value.forEach((modelDialogueItemRef) => {
modelDialogueListRef.value.forEach((modelDialogueItemRef, index) => {
if (!multiModelDialogueList.value?.[index]?.isAnswerResponseWait) {
return
}
modelDialogueItemRef?.scrollToBottom && modelDialogueItemRef.scrollToBottom()
})
}
......
......@@ -326,6 +326,7 @@ function handleClearAllMessage() {
function blockMessageResponse() {
controller?.abort()
isAnswerResponseWait.value = false
messageAudioLoading.value = false
userStore.fetchUpdateEquityInfo()
}
......
......@@ -295,6 +295,7 @@ function handleClearAllMessage() {
function blockMessageResponse() {
controller?.abort()
isAnswerResponseWait.value = false
messageAudioLoading.value = false
userStore.isLogin && userStore.fetchUpdateEquityInfo()
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment