可信代码库-AI大模型bug修复及相关功能修改(暂时不升级,需还原)

This commit is contained in:
付民康
2025-06-23 16:19:14 +08:00
parent f9f2a3f4e2
commit 8e76b60c75
4 changed files with 24 additions and 30 deletions

View File

@@ -295,7 +295,6 @@ const dhlsList = ref([]);
// 选择卡片
const selectCard = (item) => {
debugger
selectedIndex.value = item.id;
// 这里可以添加选中后的其他逻辑
// console.log('选中卡片:', cardList.value[index]);
@@ -306,7 +305,6 @@ const getQuestionHistory = async (content) => {
/*TODO:缺少用户名入参*/
const {data} = await axios.get(VITE_AI_API_HOST + '/api/conversationList?userId=?');
if(data.questions) {
debugger
dhlsList.value = data.questions
} else {
Message.warning('接口异常!')