Browse Source

解决情绪大模型搜索股票后再查看历史记录输入框一直禁用的问题。

dev
宋杰 2 days ago
parent
commit
e003a93b76
  1. 5
      src/views/AiEmotion.vue

5
src/views/AiEmotion.vue

@ -632,6 +632,9 @@ const addStock = (stockData) => {
startHeightObserver(); startHeightObserver();
// //
scrollToBottom(); scrollToBottom();
// 6.
emit('enableInput');
}); });
}; };
@ -3320,7 +3323,7 @@ onUnmounted(() => {
}); });
// //
const emit = defineEmits(["updateMessage", "sendMessage", "ensureAIchat"]);
const emit = defineEmits(["updateMessage", "sendMessage", "ensureAIchat", "enableInput"]);
// 使 // 使
</script> </script>

Loading…
Cancel
Save